Add exclude paths to vitest coverage

This commit is contained in:
RcleydsonR 2023-02-06 14:10:30 -03:00
parent 600510c719
commit ec6e8b84f7

View File

@ -13,6 +13,7 @@ export default defineConfig({
provider: "c8",
all: true,
src: ["./src"],
exclude: ["model/**", "**/__tests__/**"],
reporter: ["text", "lcov", "html"],
},
},