diff --git a/frontend/vitest.config.ts b/frontend/vitest.config.ts index 353adbd..1ca74b0 100644 --- a/frontend/vitest.config.ts +++ b/frontend/vitest.config.ts @@ -2,7 +2,8 @@ import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { - include: ['tests/**/*.test.ts'], + include: ['tests/**/*.test.ts', 'angular/src/**/*.spec.ts'], + setupFiles: ['angular/src/test-setup.ts'], exclude: ['**/node_modules/**'] } });