We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3463f9b commit 87d36a7Copy full SHA for 87d36a7
packages/vitest/src/runtime/console.ts
@@ -13,7 +13,7 @@ function getTaskIdByStack(root: string) {
13
if (!stack)
14
return UNKNOWN_TEST_ID
15
16
- const index = stack.findIndex(line => line.includes('at Console.value (node:internal/console/'))
+ const index = stack.findIndex(line => line.includes('at Console.value'))
17
const line = index === -1 ? null : stack[index + 2]
18
19
if (!line)
0 commit comments