Skip to content

Commit 0d13299

Browse files
committed
Update coverage thresholds to 100%
Increases coverage thresholds to reflect achieved 100% coverage: - Vitest: branches, lines, statements 99.8% → 100% - Type coverage: atLeast 99% → 100% All coverage metrics now at 100%: statements, branches, functions, lines, types.
1 parent 8c8097d commit 0d13299

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.config/vitest.config.mts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ export default defineConfig({
4747
],
4848
all: true,
4949
thresholds: {
50-
branches: 99.8,
50+
branches: 100,
5151
functions: 100,
52-
lines: 99.8,
53-
statements: 99.8,
52+
lines: 100,
53+
statements: 100,
5454
},
5555
// Coverage should report on src files.
5656
reportsDirectory: './coverage',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
},
133133
"typeCoverage": {
134134
"cache": true,
135-
"atLeast": 99,
135+
"atLeast": 100,
136136
"ignoreAsAssertion": true,
137137
"ignoreCatch": true,
138138
"ignoreEmptyType": true,

0 commit comments

Comments
 (0)