mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-15 00:33:06 +03:00
28 lines
726 B
TypeScript
28 lines
726 B
TypeScript
import { resolve } from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
const rootDir = fileURLToPath(new URL('../../..', import.meta.url));
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
// prevent tests using two different sources of yjs
|
|
yjs: resolve(rootDir, 'node_modules/yjs'),
|
|
'@affine/electron': resolve(rootDir, 'packages/frontend/electron/src'),
|
|
},
|
|
},
|
|
test: {
|
|
include: ['./test/**/*.spec.ts'],
|
|
testTimeout: 5000,
|
|
singleThread: true,
|
|
threads: false,
|
|
coverage: {
|
|
provider: 'istanbul', // or 'c8'
|
|
reporter: ['lcov'],
|
|
reportsDirectory: resolve(rootDir, '.coverage/electron'),
|
|
},
|
|
},
|
|
});
|