Files
m8sh/vitest.config.ts
T

26 lines
552 B
TypeScript
Raw Normal View History

import {defineConfig} from 'vitest/config';
import vuePlugin from '@vitejs/plugin-vue';
2023-07-08 06:56:12 +02:00
import {stringPlugin} from 'vite-string-plugin';
2022-10-14 15:36:16 +02:00
export default defineConfig({
test: {
include: ['web_src/**/*.test.ts'],
setupFiles: ['web_src/js/vitest.setup.ts'],
2024-03-21 15:05:24 +01:00
environment: 'happy-dom',
2022-10-14 15:36:16 +02:00
testTimeout: 20000,
open: false,
allowOnly: true,
passWithNoTests: true,
2023-09-27 06:37:13 +02:00
globals: true,
2022-10-14 15:36:16 +02:00
watch: false,
isolate: false,
2026-03-30 18:17:16 +02:00
sequence: {
concurrent: true,
},
2022-10-14 15:36:16 +02:00
},
plugins: [
stringPlugin(),
vuePlugin(),
2022-10-14 15:36:16 +02:00
],
});