maestro/vitest.config.ts
oss-sync b857c33ef6
Some checks failed
CI / build-and-test (push) Has been cancelled
sync: update from private repo (f6d625db)
2026-06-26 03:35:45 +00:00

17 lines
424 B
TypeScript

import { configDefaults, defineConfig } from 'vitest/config';
export default defineConfig({
test: {
exclude: [
...configDefaults.exclude,
'.claude/**',
'.superpowers/**',
'.worktrees/**',
// Playwright E2E specs — run via `npm run test:e2e`, not vitest. They
// import @playwright/test and fail collection under vitest.
'ui/e2e/**',
'ui/e2e-auth/**',
],
},
});