Files
Atay-Makhzan/vitest.config.ts
T

22 lines
485 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.js'],
2024-02-08 13:07:02 +01:00
setupFiles: ['web_src/js/vitest.setup.js'],
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,
},
plugins: [
stringPlugin(),
vuePlugin(),
2022-10-14 15:36:16 +02:00
],
});