mirror of https://github.com/embarklabs/embark.git
mo'work
This commit is contained in:
parent
4062873502
commit
ca485eeeba
|
@ -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) => {
|
||||
|
|
Loading…
Reference in New Issue