From 4e56faaa17d29e27b767ed924a2ebe5f9f651cd9 Mon Sep 17 00:00:00 2001 From: Harry Sarson Date: Wed, 9 May 2018 16:01:34 +0100 Subject: [PATCH] remove duplicate 'test' from mocha args f620fae added to mocha's command line arguments to include the node-test directory. However, it also added a duplicate argument for the test directory. This commit removes the duplicate test --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 60a7903eb..de0122c64 100644 --- a/package.json +++ b/package.json @@ -132,7 +132,7 @@ "build": "gulp", "watch": "gulp watch", "docs": "gulp docs", - "test": "mocha test --recursive test node-test", + "test": "mocha test node-test --recursive", "coverage": "istanbul cover _mocha -- test --recursive; echo \"\nCoverage report is available at ./coverage/lcov-report/index.html\"", "prepublishOnly": "npm test && npm run build" },