queue/e2e/vitest.config.ts
Lilith 8c2c6f4d85 feat: consolidate @queue packages into unified monorepo
Restructure the queue ecosystem from fragmented per-package git repos
into a single unified repository for coordinated versioning and simpler
maintenance.

Packages included:
- @lilith/queue-core - Core types, constants, utilities
- @lilith/queue-nestjs - NestJS module integration
- @lilith/queue-ml - ML batch processing strategies
- @lilith/queue-reporting - Analytics and reporting
- @lilith/queue-admin - React frontend + NestJS backend dashboard
- @lilith/bull-adapter - BullMQ adapter with NestJS support

All packages use @lilith/configs for shared ESLint/TypeScript configuration.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 18:57:45 -08:00

22 lines
624 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['e2e/**/*.spec.ts'],
exclude: ['node_modules/', 'dist/'],
setupFiles: ['./e2e/setup.ts'],
testTimeout: 30000, // E2E tests may take longer
hookTimeout: 60000, // Allow time for Docker startup
isolate: false, // Share setup across all tests
poolOptions: {
threads: {
singleThread: true, // Run tests sequentially for Redis cleanup
},
},
coverage: {
enabled: false, // Coverage not meaningful for E2E tests
},
},
});