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
This commit is contained in:
Harry Sarson 2018-05-09 16:01:34 +01:00 committed by GitHub
parent f620fae4a7
commit 4e56faaa17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
},