Files
tts-workshop/vitest.config.ts
hypercross 92f11db415 test: add vitest unit tests across packages
Cover shared zod schemas, extract traversal/refs/downloads, and tts filename/error handling. Document the test setup in the README and docs.
2026-08-08 11:13:14 +08:00

8 lines
193 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
include: ['packages/*/src/**/*.test.ts', 'apps/*/src/**/*.test.ts'],
},
});