aboutsummaryrefslogtreecommitdiff
path: root/apps/website/vitest.config.ts
blob: 85a35380c6c0497edaf2f15cafc86c19d4ef61ad (plain)
1
2
3
4
5
6
7
8
9
10
/// <reference types="vitest" />
import { getViteConfig } from 'astro/config';

export default getViteConfig({
	// @ts-expect-error astro moment
	test: {
		globals: true,
		reporters: ['dot'],
	},
});