From 472383e14ca6a7994cfd7ae9f563ebefbf74a0c1 Mon Sep 17 00:00:00 2001 From: Issa Tseng Date: Thu, 18 Jul 2019 17:37:04 -0700 Subject: [PATCH] test: fix test-coverage command so that it actually exits. * not sure why this is necessary but it was the prescribed fix. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d958dc4a8..852bf3d5e 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ test-unit: node_modules node node_modules/mocha/bin/mocha --recursive test/unit test-coverage: node_modules - node node_modules/.bin/nyc -x "**/migrations/**" --reporter=lcov node_modules/.bin/_mocha --recursive test + node node_modules/.bin/nyc -x "**/migrations/**" --reporter=lcov node_modules/.bin/_mocha --exit --recursive test lint: node node_modules/.bin/eslint lib