Skip to content

Commit

Permalink
Adjust coverage config
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns authored and gitbutler-client committed Jul 26, 2024
1 parent 294af18 commit 2f3cf45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { defineConfig } from "vitest/config";
// eslint-disable-next-line import/no-default-export
export default defineConfig({
test: {
root: "./src",
include: ["src/**/*.test.ts"],
coverage: {
reporter: ["lcov", "html"],
reportsDirectory: "../coverage",
exclude: ["scripts/**", "tests/**"],
include: ["src/**"],
exclude: ["src/scripts/**", "src/tests/**"],
},
},
});

0 comments on commit 2f3cf45

Please sign in to comment.