Skip to content

Commit 360866d

Browse files
committed
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)
1 parent 5829c1e commit 360866d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"scripts": {
4040
"lint": "node_modules/standard/bin/cmd.js src/index.js",
4141
"build": "node_modules/webpack/bin/webpack.js --config webpack.config.js --progress --colors",
42-
"mocha": "mocha test/*.spec.js --timeout 20000 --reporter spec",
42+
"mocha": "mocha --timeout 20000 --reporter spec mocha.start.js test/*.spec.js",
4343
"test": "npm run lint && npm run build && npm run mocha"
4444
},
4545
"standard": {

0 commit comments

Comments
 (0)