This commit is contained in:
Andre Medeiros 2019-07-22 13:54:02 -04:00
parent 4062873502
commit ca485eeeba
1 changed files with 2 additions and 1 deletions

View File

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