File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ module.exports = () => {
44 cmd : 'npm run build'
55 } ,
66 'test-integration' : {
7- cmd : 'mocha --bail --parallel --recursive --require config/mocha/config-integration.js test/ integration'
7+ cmd : 'npm run test: integration'
88 } ,
99 'test-unit' : {
10- cmd : 'mocha --bail --parallel --recursive --require config/mocha/config-unit.js test/ unit'
10+ cmd : 'npm run test: unit'
1111 }
1212 } ;
1313} ;
Original file line number Diff line number Diff line change 9292 "lint:test" : " eslint --config config/eslint/test.json --ext .js --report-unused-disable-directives test/" ,
9393 "prepare" : " husky" ,
9494 "prepublishOnly" : " npm run build" ,
95- "test" : " npm run lint && grunt test"
95+ "test" : " npm run lint && grunt test" ,
96+ "test:integration" : " mocha --bail --parallel --recursive --require config/mocha/config-integration.js test/integration" ,
97+ "test:unit" : " mocha --bail --parallel --recursive --require config/mocha/config-unit.js test/unit"
9698 },
9799 "types" : " build/es2019/module.d.ts" ,
98100 "version" : " 9.5.0"
You can’t perform that action at this time.
0 commit comments