File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1- module . exports = ( grunt ) => {
2- const continuous = grunt . option ( 'continuous' ) === true ;
3-
1+ module . exports = ( ) => {
42 return {
53 'build' : {
64 cmd : 'npm run build'
75 } ,
86 'test-unit' : {
9- cmd : `karma start config/karma/config-unit.js ${ continuous ? '--concurrency Infinity' : '--single-run' } `
7+ cmd : 'npm run test:unit'
108 }
119 } ;
1210} ;
Original file line number Diff line number Diff line change 8585 "lint:test" : " eslint --config config/eslint/test.json --ext .js --report-unused-disable-directives test/" ,
8686 "prepare" : " husky" ,
8787 "prepublishOnly" : " npm run build" ,
88- "test" : " npm run lint && grunt test"
88+ "test" : " npm run lint && grunt test" ,
89+ "test:unit" : " karma start config/karma/config-unit.js --single-run"
8990 },
9091 "types" : " build/es2019/module.d.ts" ,
9192 "version" : " 8.1.62"
You can’t perform that action at this time.
0 commit comments