AFFiNE/vitest.config.ts

26 lines
598 B
TypeScript
Raw Normal View History

import path from 'node:path';
import react from '@vitejs/plugin-react';
import { fileURLToPath } from 'url';
2023-02-17 05:43:52 +03:00
import { defineConfig } from 'vitest/config';
export default defineConfig({
plugins: [react()],
2023-02-17 05:43:52 +03:00
test: {
include: ['packages/**/*.spec.ts', 'packages/**/*.spec.tsx'],
2023-02-17 05:43:52 +03:00
testTimeout: 5000,
coverage: {
provider: 'istanbul', // or 'c8'
reporter: ['lcov'],
reportsDirectory: '.coverage/store',
},
},
resolve: {
alias: {
'@affine/store': path.resolve(
fileURLToPath(new URL('packages/store', import.meta.url))
),
},
},
2023-02-17 05:43:52 +03:00
});