Files
flyer-crawler.projectium.com/vite.config.ts
Torben Sorensen 97bb1a3966
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 41s
unit tests fixin
2025-11-22 00:17:05 -08:00

45 lines
1.5 KiB
TypeScript

// vite.config.ts
/// <reference types="vitest" />
import path from 'path';
import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
/**
* This is the main configuration file for Vite and the Vitest 'unit' test project.
* When running `vitest`, it is orchestrated by `vitest.workspace.ts`, which
* separates the unit and integration test environments.
*/
export default defineConfig({
// Vite-specific configuration for the dev server, build, etc.
// This is inherited by all Vitest projects.
plugins: [react()],
server: {
port: 3000,
host: '0.0.0.0',
},
resolve: {
alias: {
'@': path.resolve(process.cwd(), './src'),
},
},
// Vitest-specific configuration for the 'unit' test project.
test: {
// The name for this project is defined by the filename in the workspace config.
environment: 'jsdom',
globalSetup: './src/tests/setup/global-setup.ts',
setupFiles: ['./src/vitest.setup.ts'],
// Exclude integration tests, which are handled by a separate project.
exclude: ['**/*.integration.test.ts', '**/node_modules/**'],
coverage: {
provider: 'v8',
reporter: ['text', 'html'],
reportsDirectory: './coverage',
include: ['src/**/*.{ts,tsx}'],
exclude: [
'src/main.tsx', 'src/vite-env.d.ts', 'src/types.ts', 'src/vitest.setup.ts',
'src/**/*.test.{ts,tsx}', 'src/components/icons', 'src/services/logger.ts', 'src/services/notificationService.ts'
],
},
},
});