cv_2026/vitest.config.ts
jl 0de59b5604
Some checks failed
CV build / build (push) Failing after 1m48s
init vue and build
2026-04-17 14:32:24 +02:00

15 lines
382 B
TypeScript

import { fileURLToPath } from 'node:url'
import { mergeConfig, defineConfig, configDefaults } from 'vitest/config'
import viteConfig from './vite.config'
export default mergeConfig(
viteConfig,
defineConfig({
test: {
environment: 'jsdom',
exclude: [...configDefaults.exclude, 'e2e/**'],
root: fileURLToPath(new URL('./', import.meta.url)),
},
}),
)