vitest.config.ts 231 B

123456789
  1. /// <reference types="vitest" />
  2. import { getViteConfig } from 'astro/config';
  3. export default getViteConfig({
  4. test: {
  5. /* for example, use global to avoid globals imports (describe, test, expect): */
  6. // globals: true,
  7. },
  8. });