mirror of
https://github.com/shelljs/shelljs.git
synced 2026-01-18 16:03:37 +00:00
25 lines
600 B
JavaScript
Executable File
25 lines
600 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
require('../global');
|
|
|
|
var failed = false;
|
|
|
|
cd(__dirname + '/../test');
|
|
ls('*.js').forEach(function(file) {
|
|
echo('Running test:', file);
|
|
if (exec('node '+file).code !== 123) { // 123 avoids false positives (e.g. premature exit)
|
|
failed = true;
|
|
echo('*** TEST FAILED! (missing exit code "123")');
|
|
}
|
|
});
|
|
|
|
if (failed) {
|
|
echo();
|
|
echo('*******************************************************');
|
|
echo('WARNING: Some tests did not pass!');
|
|
echo('*******************************************************');
|
|
exit(1);
|
|
} else {
|
|
echo();
|
|
echo('All tests passed.');
|
|
}
|