File tree Expand file tree Collapse file tree 2 files changed +2
-19
lines changed Expand file tree Collapse file tree 2 files changed +2
-19
lines changed Original file line number Diff line number Diff line change 33/** @type {import('jest').Config } */
44const jestConfig = {
55 clearMocks : true ,
6- collectCoverage : true ,
7- collectCoverageFrom : [ './src/**' ] ,
8- coverageDirectory : './coverage' ,
9- coveragePathIgnorePatterns : [ '/node_modules/' , '/dist/' ] ,
10- coverageReporters : [ 'json-summary' , 'text' , 'lcov' ] ,
11- // Uncomment the below lines if you would like to enforce a coverage threshold
12- // for your action. This will fail the build if the coverage is below the
13- // specified thresholds.
14- // coverageThreshold: {
15- // global: {
16- // branches: 100,
17- // functions: 100,
18- // lines: 100,
19- // statements: 100
20- // }
21- // },
6+ collectCoverage : false ,
227 moduleFileExtensions : [ 'js' ] ,
238 reporters : [ 'default' ] ,
249 testEnvironment : 'node' ,
Original file line number Diff line number Diff line change 1818 "release:major" : " npm run version:major && npm publish --access public && git push --follow-tags" ,
1919 "release:minor" : " npm run version:minor && npm publish --access public && git push --follow-tags" ,
2020 "release:patch" : " npm run version:patch && npm publish --access public && git push --follow-tags" ,
21- "test:coverage" : " jest --coverage" ,
22- "test:watch" : " jest --watch" ,
23- "test" : " jest" ,
21+ "test" : " NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest" ,
2422 "version:major" : " npm version major" ,
2523 "version:minor" : " npm version minor" ,
2624 "version:patch" : " npm version patch"
You can’t perform that action at this time.
0 commit comments