We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cd63ca commit 34e4aebCopy full SHA for 34e4aeb
1 file changed
testing/snapshot_test.ts
@@ -26,9 +26,9 @@ function formatTestOutput(string: string) {
26
}
27
28
function formatTestError(string: string) {
29
- // Strip colors and remove "Check file:///workspaces/deno_std/testing/.tmp/test.ts"
+ // Strip colors and remove "Check <path>" lines
30
// as this is always output to stderr
31
- return stripAnsiCode(string).replace(/^Check file:\/\/(.+)\n/gm, "");
+ return stripAnsiCode(string).replace(/^Check .+\n/gm, "");
32
33
34
function testFnWithTempDir(
0 commit comments