From d32b4e3595b912f29d7718efac2f2224b87a1ad8 Mon Sep 17 00:00:00 2001 From: ssh24 Date: Fri, 16 Jun 2017 11:48:00 -0400 Subject: [PATCH] Require init on mocha args --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4a499246a..4395f2829 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "scripts": { "benchmarks": "make benchmarks", "leak-detection": "make leak-detection", - "test": "mocha -G --timeout 10000 test/*.test.js", + "test": "mocha -G --timeout 10000 --require test/init.js test/*.test.js", "lint": "eslint .", "posttest": "npm run lint" },