Replies: 2 comments 5 replies
-
Currently that message is logged always when coverage is enabled. It doesn't really make sense to log it if |
Beta Was this translation helpful? Give feedback.
3 replies
-
I need the test result (from The test result looks like this and seems I can only get it from terminal stdout: {
"numTotalTestSuites": 2,
"numPassedTestSuites": 2,
"numFailedTestSuites": 0,
"numPendingTestSuites": 0,
"numTotalTests": 5,
"numPassedTests": 5,
"numFailedTests": 0,
"numPendingTests": 0,
"numTodoTests": 0,
"startTime": 1693041503488,
"success": true,
"testResults": [ /* ... */ ]
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I want vitest to output test results in json, so I use
--reporter=json
, however with--coverage.enabled --coverage.clean --coverage.reporter=json
flags, vitest adds a line " % Coverage report from v8" after json output.I'd like to see coverage written to
coverage/coverage-final.json
without any output in terminal, is there any flags I'm missing?Beta Was this translation helpful? Give feedback.
All reactions