Skip to content

Commit

Permalink
test: update nyc config
Browse files Browse the repository at this point in the history
  • Loading branch information
Egor Manzhula committed Nov 11, 2024
1 parent 9c39ac6 commit 675cdcb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nyc.config.json → nyc.config.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
module.exports = {
'check-coverage': true,
lines: 100,
statements: 100,
functions: 100,
branches: 100,
lines: 90,
statements: 90,
functions: 90,
branches: 90,
watermarks: {
lines: [85, 100],
functions: [85, 100],
branches: [85, 100],
statements: [85, 100],
},
include: ['**/*.js'],
exclude: ['node_modules', 'test-results', '**/*.spec.js', 'nyc.config.js'],
exclude: ['node_modules', 'test-results', 'test/*', '**/*.spec.js', '*.config.js'],
reporter: ['text', 'html', 'cobertura'],
cache: false,
all: true,
Expand Down

0 comments on commit 675cdcb

Please sign in to comment.