mirror of
https://github.com/shelljs/shelljs.git
synced 2026-01-18 16:03:37 +00:00
9 lines
153 B
JavaScript
Executable File
9 lines
153 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
require('../global');
|
|
|
|
cd(__dirname + '/../test');
|
|
for (file in ls('*.js')) {
|
|
echo('Running test:', file);
|
|
exec('node '+file);
|
|
}
|