This commit is contained in:
Pine Wu
2019-06-25 07:45:59 -07:00
parent 1830f9b3bf
commit a200f8fce9

View File

@ -2,27 +2,38 @@ import * as path from 'path';
import * as Mocha from 'mocha';
import * as glob from 'glob';
export function run(testsRoot: string, cb: (error: any, failures?: number) => void): void {
export function run(): Promise<void> {
// Create the mocha test
const mocha = new Mocha({
ui: 'tdd'
ui: 'tdd',
});
// Use any mocha API
mocha.useColors(true);
const testsRoot = path.resolve(__dirname, '..');
glob('**/**.test.js', { cwd: testsRoot }, (err, files) => {
if (err) {
return cb(err);
}
return new Promise((c, e) => {
// return e(new Error('Straight failure'));
// Add files to the test suite
files.forEach(f => mocha.addFile(path.resolve(testsRoot, f)));
glob('**/**.test.js', { cwd: testsRoot }, (err, files) => {
if (err) {
return e(err);
}
try {
// Run the mocha test
mocha.run(failures => cb(null, failures));
} catch (err) {
cb(err);
}
// Add files to the test suite
files.forEach(f => mocha.addFile(path.resolve(testsRoot, f)));
try {
// Run the mocha test
mocha.run(failures => {
if (failures > 0) {
e(new Error(`${failures} tests failed.`));
} else {
c();
}
});
} catch (err) {
e(err);
}
});
});
}