We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6a320c commit 48f0862Copy full SHA for 48f0862
v-next/hardhat-node-test-reporter/integration-tests/index.ts
@@ -71,5 +71,9 @@ function normalizeOutputs(output: string): string {
71
.replaceAll(/\(.*?:\d+:\d+\)/g, (match) => {
72
return match.replaceAll(path.sep, "/");
73
})
74
+ // Remove lines like `at TestHook.run (node:internal/test_runner/test:1107:18)`
75
+ .replaceAll(/at .*? \(node\:.*?:\d+:\d+\)/g, "")
76
+ // Remove lines like `at node:internal/test_runner/test:776:20`
77
+ .replaceAll(/at node\:.*?:\d+:\d+/g, "")
78
);
79
}
0 commit comments