mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 01:01:25 +02:00
183 tests across 10 files covering all server endpoints: - Health, pricing, 404 handling - Memo CRUD (create, append, retry, combine, Q&A) - Credits (balance, check, consume) - Settings (profile, memoro settings, data usage) - Spaces (CRUD, invites, link/unlink memos) - Meetings (bots, recordings) - Internal callbacks (transcription, batch metadata) - Cleanup (auth, run, manual) - Credit utility (calcTranscriptionCost, COSTS) 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,
|
|
},
|
|
});
|