Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

Commit c75ecad

Browse files
committed
chore: include all src/* in coverage report
1 parent 60a788d commit c75ecad

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

vitest.config.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const { defineConfig } = require('vitest/config');
2+
3+
module.exports = defineConfig({
4+
test: {
5+
coverage: {
6+
provider: 'v8',
7+
all: true,
8+
include: ['src/**/*.js']
9+
}
10+
}
11+
});

0 commit comments

Comments
 (0)