File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -142,8 +142,8 @@ jobs:
142
142
- name : Install Dependencies
143
143
run : npm ci --ignore-scripts
144
144
145
- - name : Run Tests
146
- run : npm run testonly
145
+ - name : Run Tests with coverage
146
+ run : npm run testonly:cover
147
147
148
148
build-npm-dist :
149
149
name : Build 'npmDist' artifact
Original file line number Diff line number Diff line change 33
33
"fuzzonly" : " mocha --full-trace src/**/__tests__/**/*-fuzz.ts" ,
34
34
"changelog" : " node resources/gen-changelog.js" ,
35
35
"benchmark" : " node benchmark/benchmark.js" ,
36
- "test" : " npm run lint && npm run check && npm run testonly && npm run prettier:check && npm run check:spelling && npm run check:integrations" ,
36
+ "test" : " npm run lint && npm run check && npm run testonly:cover && npm run prettier:check && npm run check:spelling && npm run check:integrations" ,
37
37
"lint" : " eslint --cache --max-warnings 0 ." ,
38
38
"check" : " tsc --pretty" ,
39
- "testonly" : " c8 mocha --full-trace src/**/__tests__/**/*-test.ts" ,
39
+ "testonly" : " mocha --full-trace src/**/__tests__/**/*-test.ts" ,
40
+ "testonly:cover" : " c8 npm run testonly" ,
41
+ "testonly:watch" : " npm run testonly -- --watch" ,
40
42
"prettier" : " prettier --write --list-different ." ,
41
43
"prettier:check" : " prettier --check ." ,
42
44
"check:spelling" : " cspell --cache --no-progress '**/*'" ,
You can’t perform that action at this time.
0 commit comments