chore(monorepo/client): missing provider in vitest config

This commit is contained in:
Elian Doran 2025-04-18 11:40:45 +03:00
parent 059e617839
commit 8bcea010dd
No known key found for this signature in database

View File

@ -5,7 +5,8 @@ export default defineConfig({
setupFiles: ["./test/setup.ts"],
environment: "happy-dom",
coverage: {
reporter: [ "text", "html" ]
reporter: [ "text", "html" ],
provider: "v8"
}
}
});