template-web-astro/vitest.config.ts
Florian Bouillon bc97d9106b
Some checks failed
Build, check & Test / run (push) Failing after 1m45s
Lint / run (push) Failing after 48s
Build Docker Image / build_docker (push) Failing after 3m18s
feat: Filemagedon
Signed-off-by: Avior <git@avior.me>
2024-09-11 14:38:58 +02:00

11 lines
259 B
TypeScript

/// <reference types="vitest" />
import { getViteConfig } from 'astro/config'
export default getViteConfig({
test: {
include: ['./tests/**/*.ts']
/* for example, use global to avoid globals imports (describe, test, expect): */
// globals: true,
}
})