diff --git a/packages/embark-test-runner/src/index.js b/packages/embark-test-runner/src/index.js index 59be4208b..8040fd2df 100644 --- a/packages/embark-test-runner/src/index.js +++ b/packages/embark-test-runner/src/index.js @@ -258,7 +258,6 @@ class TestRunner { } runJSTests(files, options, cb) { - return; async.waterfall([ (next) => { // setup global namespace global.assert = assert; diff --git a/packages/embark-watcher/src/index.js b/packages/embark-watcher/src/index.js index 84c619085..9af3c3880 100644 --- a/packages/embark-watcher/src/index.js +++ b/packages/embark-watcher/src/index.js @@ -9,6 +9,9 @@ const DAPP_BABEL_LOADER_OVERRIDES_CONFIG_FILE = 'babel-loader-overrides.js'; // TODO: this should be receiving the config object not re-reading the // embark.json file + +// TODO: rename file events to comply with naming convention + class Watcher { constructor(embark) { this.logger = embark.logger;