mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-24 04:32:11 +03:00
14 lines
290 B
TypeScript
14 lines
290 B
TypeScript
|
import { defineConfig } from 'vitest/config';
|
||
|
|
||
|
export default defineConfig({
|
||
|
test: {
|
||
|
include: ['packages/**/*.spec.ts'],
|
||
|
testTimeout: 5000,
|
||
|
coverage: {
|
||
|
provider: 'istanbul', // or 'c8'
|
||
|
reporter: ['lcov'],
|
||
|
reportsDirectory: '.coverage/store',
|
||
|
},
|
||
|
},
|
||
|
});
|