open-design/e2e/vitest.config.ts
PerishFire cfebff9653
Align app directories and isolate e2e tests (#102)
* chore: align app directories

* test: consolidate external suites under e2e
2026-04-30 09:47:03 +08:00

12 lines
235 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
esbuild: {
jsx: 'automatic',
jsxImportSource: 'react',
},
test: {
environment: 'jsdom',
include: ['tests/**/*.test.{ts,tsx}'],
},
});