2023-07-08 12:26:35 +02:00
|
|
|
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';
|
2024-07-17 01:37:20 +02:00
|
|
|
import {resolve} from 'node:path';
|
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,
|
2024-07-17 01:37:20 +02:00
|
|
|
alias: {
|
|
|
|
'monaco-editor': resolve(import.meta.dirname, '/node_modules/monaco-editor/esm/vs/editor/editor.api'),
|
|
|
|
},
|
2022-10-14 15:36:16 +02:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
stringPlugin(),
|
2023-07-08 12:26:35 +02:00
|
|
|
vuePlugin(),
|
2022-10-14 15:36:16 +02:00
|
|
|
],
|
|
|
|
});
|