Files

11 lines
310 B
TypeScript

import { defineConfig } from 'vitest/config';
// Unit tests only. The Playwright suite lives in tests/e2e and is run by
// `npm run test:e2e` — including it here would start a browser per run.
export default defineConfig({
test: {
include: ['tests/unit/**/*.test.ts'],
environment: 'node'
}
});