Files
ai-coding-workflow-labs/gsd-framework/vitest.config.js
T
tiennm99 3ef9d8b9ca chore(01-01): configure Vitest test infrastructure
- Add vitest.config.js with jsdom environment and global test APIs
- Install vitest and jsdom as dev dependencies
- Add test scripts (test, test:run) to package.json
2026-03-12 02:39:49 +00:00

10 lines
178 B
JavaScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'jsdom',
globals: true,
include: ['tests/**/*.test.js'],
},
});