Skip to content

Commit 2d446d2

Browse files
plemarquandmichael-weng
authored andcommitted
Remove test issue failure suffix
1 parent 8757f0e commit 2d446d2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/integration-tests/testexplorer/TestExplorerIntegration.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -438,8 +438,6 @@ suite("Test Explorer Suite", function () {
438438
let xcTestFailureMessage: string;
439439

440440
beforeEach(() => {
441-
const suffix = process.platform === "win32" ? "\x1b[0K" : "";
442-
443441
// From 5.7 to 5.10 running with the --parallel option dumps the test results out
444442
// to the console with no newlines, so it isn't possible to distinguish where errors
445443
// begin and end. Consequently we can't record them, and so we manually mark them
@@ -448,7 +446,7 @@ suite("Test Explorer Suite", function () {
448446
runProfile === TestKind.parallel &&
449447
!workspaceContext.toolchain.hasMultiLineParallelTestOutput
450448
? "failed"
451-
: `failed - oh no${suffix}`;
449+
: `failed - oh no`;
452450
});
453451

454452
suite(runProfile, () => {

0 commit comments

Comments
 (0)