mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 22:46:41 +02:00
- Health endpoint, service key auth, 404 handler tests - Transcribe and append endpoint validation tests - Azure speech service config tests (getAvailableSpeechServices, pickRandomService) - Export app for testability Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
226 B
TypeScript
11 lines
226 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
include: ['src/**/*.test.ts'],
|
|
setupFiles: ['./src/test-setup.ts'],
|
|
clearMocks: true,
|
|
},
|
|
});
|