summaryrefslogtreecommitdiff
path: root/examples/with-vitest/vitest.config.ts
blob: a34f19bb10f53d476c263fb13b5bfb827959dabc (plain) (blame)
1
2
3
4
5
6
7
8
9
/// <reference types="vitest" />
import { getViteConfig } from 'astro/config';

export default getViteConfig({
	test: {
		/* for example, use global to avoid globals imports (describe, test, expect): */
		// globals: true,
	},
});