first-commit
This commit is contained in:
21
vitest.config.ts
Normal file
21
vitest.config.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
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(),
|
||||
],
|
||||
});
|
Reference in New Issue
Block a user