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 05e9b0e commit 447e8c5Copy full SHA for 447e8c5
src/testRunner/externalCompileRunner.ts
@@ -185,7 +185,8 @@ function stripRushStageNumbers(result: string): string {
185
* so we purge as much of the gulp output as we can
186
*/
187
function sanitizeUnimportantGulpOutput(result: string): string {
188
- return result.replace(/^.*(\] (Starting)|(Finished)).*$/gm, "") // task start/end messages (nondeterministic order)
+ return result.replace(/^.*(\] (Starting)|(Finished)).*$/gm, "") // "gulp" task start/end messages (nondeterministic order)
189
+ .replace(/^.*(\] . (finished)|(started)).*$/gm, "") // "just" task start/end messages (nondeterministic order)
190
.replace(/^.*\] Respawned to PID: \d+.*$/gm, "") // PID of child is OS and system-load dependent (likely stableish in a container but still dangerous)
191
.replace(/\n+/g, "\n");
192
}
0 commit comments