import { sveltekit } from '@sveltejs/kit/vite'; import { defineConfig } from 'vite'; import { configDefaults } from 'vitest/config'; import { svelteTesting } from '@testing-library/svelte/vite'; export default defineConfig({ plugins: [sveltekit(), svelteTesting()], test: { // If you are testing components client-side, you need to setup a DOM environment. // If not all your files should have this environment, you can use a // `// @vitest-environment jsdom` comment at the top of the test files instead. environment: 'jsdom', clearMocks: true, restoreMocks: true, coverage: { thresholds: { statements: 12, branches: 85, functions: 75, lines: 12, }, exclude: [...configDefaults.exclude, '**/*.config.js', '**/docs/**', '**/target/**'], }, }, // Tell Vitest to use the `browser` entry points in `package.json` files, // even though it's running in Node resolve: process.env.VITEST ? { conditions: ['browser'] } : undefined, server: { fs: { allow: ['ui'], }, proxy: { '/api': process.env['API_SERVER'] || 'http://localhost:64209', }, }, });