1
0

vitest.config.ts 268 B

12345678910111213
  1. import { defineConfig } from 'vitest/config';
  2. export default defineConfig({
  3. test: {
  4. globals: true,
  5. environment: 'node',
  6. include: ['__tests__/**/*.test.ts'],
  7. coverage: {
  8. provider: 'v8',
  9. reporter: ['text', 'json', 'html'],
  10. },
  11. },
  12. });