You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
import { resolve } from 'node:path';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
optimizeDeps: {
|
|
exclude: ['crypto', 'util', 'tty'],
|
|
include: ['@lobehub/tts'],
|
|
},
|
|
test: {
|
|
alias: {
|
|
'@': resolve(__dirname, './src'),
|
|
'~test-utils': resolve(__dirname, './tests/utils.tsx'),
|
|
},
|
|
coverage: {
|
|
all: false,
|
|
exclude: [
|
|
'__mocks__/**',
|
|
// just ignore the migration code
|
|
// we will use pglite in the future
|
|
// so the coverage of this file is not important
|
|
'src/database/client/core/db.ts',
|
|
'src/utils/fetch/fetchEventSource/*.ts',
|
|
],
|
|
provider: 'v8',
|
|
reporter: ['text', 'json', 'lcov', 'text-summary'],
|
|
reportsDirectory: './coverage/app',
|
|
},
|
|
environment: 'happy-dom',
|
|
exclude: [
|
|
'**/node_modules/**',
|
|
'**/dist/**',
|
|
'**/build/**',
|
|
'src/database/server/**/**',
|
|
'src/database/repositories/dataImporter/**/**',
|
|
],
|
|
globals: true,
|
|
server: {
|
|
deps: {
|
|
inline: ['vitest-canvas-mock'],
|
|
},
|
|
},
|
|
setupFiles: './tests/setup.ts',
|
|
},
|
|
});
|