Skip to content

Commit 91983b4

Browse files
rekmarksclaude
andauthored
Remove text reporter from coverage configuration (#766)
Removes the 'text' reporter from the vitest coverage configuration, since all it does is gum up stdout to no benefit. <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Removes the `text` coverage reporter from Vitest configuration, retaining `json`, `json-summary`, and `html` outputs. > > - Updates `vitest.config.ts` `coverage.reporter` to `['json', 'json-summary', 'html']` > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 3bd36c0. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY --> Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent fe8fb66 commit 91983b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vitest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default defineConfig({
4949
coverage: {
5050
enabled: true,
5151
provider: 'v8',
52-
reporter: ['text', 'json', 'json-summary', 'html'],
52+
reporter: ['json', 'json-summary', 'html'],
5353
reportsDirectory: './coverage',
5454
include: ['**/src/**/*.{ts,tsx}'],
5555
exclude: [

0 commit comments

Comments
 (0)