diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2018-05-11 20:15:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-11 20:15:34 +0800 |
commit | 7b59b2f5b299893aaf7130af0498c8f477b25a4b (patch) | |
tree | 023c028ed5897fea5b80e260b4e59060ef4e717b /test/run-tests.js | |
parent | 7bc7704edfe0a8af39924889e58b3d67f135b230 (diff) | |
download | tracifyjs-7b59b2f5b299893aaf7130af0498c8f477b25a4b.tar.gz tracifyjs-7b59b2f5b299893aaf7130af0498c8f477b25a4b.zip |
replace `mocha` dependency (#3131)
Diffstat (limited to 'test/run-tests.js')
-rwxr-xr-x | test/run-tests.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/run-tests.js b/test/run-tests.js index b31c33bc..6043f635 100755 --- a/test/run-tests.js +++ b/test/run-tests.js @@ -18,9 +18,8 @@ if (failures) { console.error("!!! " + Object.keys(failed_files).join(", ")); process.exit(1); } - -var mocha_tests = require("./mocha.js"); -mocha_tests(); +console.log(); +require("./mocha.js"); /* -----[ utils ]----- */ |