vitest.config.ts 291 B

123456789101112
  1. import tsconfigPaths from 'vite-tsconfig-paths';
  2. import { defineConfig } from 'vitest/config';
  3. export default defineConfig({
  4. plugins: [tsconfigPaths()],
  5. test: {
  6. clearMocks: true,
  7. globals: true,
  8. environment: 'happy-dom',
  9. include: ['**/*.{spec,integ}.{ts,tsx}'],
  10. },
  11. });