mirror of
https://github.com/zoriya/v10.git
synced 2026-08-14 01:49:30 +00:00
26 lines
988 B
TypeScript
26 lines
988 B
TypeScript
/// <reference types="vitest/config" />
|
|
import react from '@vitejs/plugin-react';
|
|
import { getViteConfig } from 'astro/config';
|
|
import type { ViteUserConfig } from 'vitest/config';
|
|
|
|
// Typed as vitest's `ViteUserConfig` (Vite's config augmented with `test`) and
|
|
// passed as a variable: Astro 7's `getViteConfig` param no longer surfaces the
|
|
// vitest module augmentation, so a fresh object literal trips an excess-property
|
|
// check on `test`. A variable is only checked for structural assignability.
|
|
const config: ViteUserConfig = {
|
|
plugins: [react()],
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
setupFiles: ['./src/test-setup.ts'],
|
|
coverage: {
|
|
provider: 'v8',
|
|
reporter: ['text', 'json', 'html'],
|
|
include: ['src/utils/**', 'src/components/**', 'src/types/**', 'scripts/api-docs-builder/src/**'],
|
|
exclude: ['**/*.test.ts', '**/*.test.tsx', '**/*.spec.ts', '**/*.spec.tsx', '**/test/**'],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default getViteConfig(config);
|