mirror of
https://github.com/zen-browser/www.git
synced 2025-07-13 11:45:31 +02:00
17 lines
No EOL
381 B
TypeScript
17 lines
No EOL
381 B
TypeScript
/// <reference types="vitest" />
|
|
import { getViteConfig } from 'astro/config';
|
|
import { defaultExclude } from 'vitest/config';
|
|
|
|
export default getViteConfig({
|
|
test: {
|
|
exclude: [
|
|
...defaultExclude,
|
|
"**/*.spec.ts",
|
|
],
|
|
setupFiles: ['./src/tests/vitest.setup.ts'],
|
|
coverage: {
|
|
provider: 'istanbul',
|
|
reporter: ['text', 'html'],
|
|
},
|
|
},
|
|
});
|