shelljs/scripts/run-tests.js
2012-03-02 11:30:42 -05:00

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);
}