22 lines
485 B
TypeScript
22 lines
485 B
TypeScript
|
import {defineConfig} from 'vitest/config';
|
||
|
import vuePlugin from '@vitejs/plugin-vue';
|
||
|
import {stringPlugin} from 'vite-string-plugin';
|
||
|
|
||
|
export default defineConfig({
|
||
|
test: {
|
||
|
include: ['web_src/**/*.test.ts'],
|
||
|
setupFiles: ['web_src/js/vitest.setup.ts'],
|
||
|
environment: 'happy-dom',
|
||
|
testTimeout: 20000,
|
||
|
open: false,
|
||
|
allowOnly: true,
|
||
|
passWithNoTests: true,
|
||
|
globals: true,
|
||
|
watch: false,
|
||
|
},
|
||
|
plugins: [
|
||
|
stringPlugin(),
|
||
|
vuePlugin(),
|
||
|
],
|
||
|
});
|