Skip to content

Commit d337046

Browse files
committed
fix: restructure coverage thresholds in Vitest configuration
1 parent f1fe72a commit d337046

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

vitest.config.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ export default defineConfig({
1010
include: ['src/**/*.js'],
1111
exclude: ['node_modules', '__tests__'],
1212
all: true,
13-
lines: 100,
14-
functions: 100,
15-
branches: 100,
16-
statements: 100
13+
thresholds: {
14+
lines: 100,
15+
functions: 100,
16+
branches: 100,
17+
statements: 100
18+
}
1719
},
1820
globals: true,
1921
reporters: ['default'],

0 commit comments

Comments
 (0)