Skip to content

Commit 6e59138

Browse files
committed
Remove test issue failure suffix
1 parent fbbc25d commit 6e59138

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
@@ -436,8 +436,6 @@ suite("Test Explorer Suite", function () {
436436
let xcTestFailureMessage: string;
437437

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

452450
suite(runProfile, () => {

0 commit comments

Comments
 (0)