Files
narlblog/frontend/vitest.config.ts
T
2026-05-16 23:48:57 +02:00

11 lines
304 B
TypeScript

import { defineConfig } from 'vitest/config';
// Pure-logic unit tests only (no Astro/DOM). Component/integration tests, if
// added later, should switch to `getViteConfig` from 'astro/config'.
export default defineConfig({
test: {
environment: 'node',
include: ['src/**/*.test.ts'],
},
});