Exclude test utilities from coverage report

This commit is contained in:
Robin 2024-09-10 16:23:00 -04:00
parent 982bd6d06b
commit fa36fcd3a2

View File

@ -16,6 +16,7 @@ export default defineConfig((configEnv) =>
coverage: {
reporter: ["html", "json"],
include: ["src/"],
exclude: ["src/**/*.{d,test}.{ts,tsx}", "src/utils/test.ts"],
},
},
}),