File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 42
42
"dev-win" : " npm run clear && concurrently \" mongod --dbpath data\" \" wait-on tcp:27017&&SET NODE_ENV=development&& nodemon --inspect server/\" " ,
43
43
"dev-noseed" : " concurrently 'mongod --dbpath data' 'wait-on tcp:27017 && NODE_ENV=development nodemon --inspect server/'" ,
44
44
"dev-win-noseed" : " concurrently \" mongod --dbpath data\" \" wait-on tcp:27017 && nodemon --inspect server/\" " ,
45
- "mocha" : " npm run clear && concurrently --kill-others --success first '$npm_package_config_mongoDev &>/dev/null' 'wait-on tcp:27017 && NODE_ENV=test $npm_package_config_mocha'" ,
46
- "coverage" : " npm run clear && concurrently --kill-others --success first '$npm_package_config_mongoDev &>/dev/null' 'wait-on tcp:27017 && NODE_ENV=test istanbul cover $npm_package_config_mochaCoverage'"
45
+ "mocha" : " npm run clear && $npm_package_config_concurrently '$npm_package_config_mongoDev &>/dev/null' 'wait-on tcp:27017 && NODE_ENV=test $npm_package_config_mocha'" ,
46
+ "coverage" : " npm run clear && $npm_package_config_concurrently '$npm_package_config_mongoDev &>/dev/null' 'wait-on tcp:27017 && NODE_ENV=test istanbul cover $npm_package_config_mochaCoverage'"
47
47
},
48
48
"config" : {
49
49
"mongoDev" : " mongod --dbpath data" ,
50
50
"mocha" : " node_modules/mocha/bin/_mocha test/ --recursive --timeout 10000 --exit" ,
51
- "mochaCoverage" : " node_modules/mocha/bin/_mocha -- test/ --recursive --timeout 10000 --exit"
51
+ "mochaCoverage" : " node_modules/mocha/bin/_mocha -- test/ --recursive --timeout 10000 --exit" ,
52
+ "concurrently" : " concurrently --kill-others --success first"
52
53
},
53
54
"dependencies" : {
54
55
"body-parser" : " ~1.18.2" ,
You can’t perform that action at this time.
0 commit comments