Files
nuchat/ui/vitest.config.ts
Fergus Molloy a54648d11b
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 10s
remove separate ui service, serve ui with backend
2025-07-18 01:55:34 +01: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)),
},
}),
)