Introduce test.bat orchestrating Go/Vitest/Playwright phases, expand coverage across server, agent, and dashboard, and document in tests/README.md.
12 lines
227 B
TypeScript
12 lines
227 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['src/**/*.test.ts'],
|
|
environmentMatchGlobs: [
|
|
['src/api/**', 'happy-dom'],
|
|
],
|
|
},
|
|
});
|