mirror of
https://github.com/shelljs/shelljs.git
synced 2026-01-18 16:03:37 +00:00
* test: set up ava and move cd.js Set up ava as the new test framework. Migrate the tests for the cd command to use the ava framework. * refactor: reorder imports, remove useless dep
5 lines
104 B
JavaScript
5 lines
104 B
JavaScript
#!/usr/bin/env node
|
|
setTimeout(function() {
|
|
console.log('slow');
|
|
}, parseInt(process.argv[2], 10));
|