From 174308368949fc25ee6c1bde2460bd737712d778 Mon Sep 17 00:00:00 2001 From: Andre Medeiros Date: Wed, 11 Jul 2018 11:43:42 -0400 Subject: [PATCH] Tell Mocha to exit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e581fe851..e508da64f 100644 --- a/package.json +++ b/package.json @@ -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"