Skip to content

Commit

Permalink
bring in the coverage gutters!!
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronbrill committed Mar 10, 2024
1 parent 829496e commit f361122
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"vitest.explorer",
"wallabyjs.wallaby-vscode",
"file-icons.file-icons",
"usernamehw.errorlens"
"usernamehw.errorlens",
"ryanluker.vscode-coverage-gutters"
]
}
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"vitest.watchOnStartup": true,
"vitest.showFailMessages": true,
"vitest.enable": true,
"vitest.commandLine": "yarn test:watch"
"vitest.commandLine": "yarn test:coverage:watch"
}
2 changes: 1 addition & 1 deletion vitest.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default defineConfig({
"**/.{idea,git,cache,output,temp,yarn}/**",
],
provider: "istanbul",
reporter: ["json", "text", "html", "json-summary"],
reporter: ["json", "text", "html", "json-summary", "lcov"],
reportsDirectory: "./src/__tests__/coverage",
reportOnFailure: true,
thresholds: {
Expand Down

0 comments on commit f361122

Please sign in to comment.