From 360866d3f56e56e6d851c8ef6454b2d7a3f26a75 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Thu, 22 Oct 2015 11:06:38 -0400 Subject: [PATCH] Fix tests actually running (mocha.start.js wasn't being added, so co-mocha wasn't used, and generator function tests were passing without actually running) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f21779d..a944a8c 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "scripts": { "lint": "node_modules/standard/bin/cmd.js src/index.js", "build": "node_modules/webpack/bin/webpack.js --config webpack.config.js --progress --colors", - "mocha": "mocha test/*.spec.js --timeout 20000 --reporter spec", + "mocha": "mocha --timeout 20000 --reporter spec mocha.start.js test/*.spec.js", "test": "npm run lint && npm run build && npm run mocha" }, "standard": {