We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebca423 commit 42d6683Copy full SHA for 42d6683
src/testRunner/externalCompileRunner.ts
@@ -208,7 +208,8 @@ ${sanitizeDockerfileOutput(result.stderr.toString())}`;
208
return result.replace(/^.*(\] (Starting)|(Finished)).*$/gm, "") // "gulp" task start/end messages (nondeterministic order)
209
.replace(/^.*(\] . (finished)|(started)).*$/gm, "") // "just" task start/end messages (nondeterministic order)
210
.replace(/^.*\] Respawned to PID: \d+.*$/gm, "") // PID of child is OS and system-load dependent (likely stableish in a container but still dangerous)
211
- .replace(/\n+/g, "\n");
+ .replace(/\n+/g, "\n")
212
+ .replace(/\/tmp\/yarn--.*?\/node/g, "");
213
}
214
215
function sanitizeTimestamps(result: string): string {
0 commit comments