update the initTests method of embark to reflect the new structure of test.js

This commit is contained in:
roo2 2017-03-21 18:55:15 +10:00
parent 2a39290158
commit 3637b2e06e
1 changed files with 2 additions and 3 deletions

View File

@ -167,9 +167,8 @@ var Embark = (function () {
});
}
function initTests (options) {
var Test = require('./core/test.js');
return new Test(options);
function initTests () {
return require('./core/test.js');
}
// TODO: should deploy if it hasn't already