Skip to content

Commit fb63f5f

Browse files
committed
chore: ignore vendor for test coverage
1 parent 60f6944 commit fb63f5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vitest.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ import { defineConfig } from 'vitest/config';
33
export default defineConfig({
44
test: {
55
coverage: {
6-
exclude: ['src/index.ts', 'src/types.ts'],
6+
exclude: ['src/index.ts', 'src/types.ts', 'src/vendor'],
77
include: ['src/**/*'],
88
provider: 'v8',
9+
skipFull: true,
910
thresholds: {
1011
branches: 100,
1112
functions: 100,
1213
lines: 100,
1314
statements: 100
14-
},
15-
skipFull: true
15+
}
1616
},
1717
watch: false
1818
}

0 commit comments

Comments
 (0)