Tell Mocha to exit

This commit is contained in:
Andre Medeiros 2018-07-11 11:43:42 -04:00
parent 21da13ab69
commit 07290f289d
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
"description": "Embark is a framework that allows you to easily develop and deploy DApps",
"scripts": {
"lint": "./node_modules/.bin/eslint lib/",
"test": "mocha test/ --no-timeouts",
"test": "mocha test/ --no-timeouts --exit",
"testdapp_1": "cd test_apps/test_app/ && npm install && node ../../bin/embark test",
"testdapp_2": "cd test_apps/contracts_app/ && npm install && node ../../bin/embark test",
"fulltest": "npm run lint && npm run test && npm run testdapp_1 && npm run testdapp_2"