This commit is contained in:
Andre Medeiros 2019-07-22 13:54:02 -04:00
parent 4062873502
commit ca485eeeba

View File

@ -243,6 +243,7 @@ class TestRunner {
} }
runJSTests(files, options, cb) { runJSTests(files, options, cb) {
return;
async.waterfall([ async.waterfall([
(next) => { // setup global namespace (next) => { // setup global namespace
global.assert = assert; global.assert = assert;
@ -264,7 +265,7 @@ class TestRunner {
next(null, mocha); next(null, mocha);
}, },
(mocha, next) => { (mocha, next) => {
mocha.options.delay = false; //mocha.options.delay = false;
mocha.run(failures => next(null, failures)); mocha.run(failures => next(null, failures));
} }
], (err, failures) => { ], (err, failures) => {