diff --git a/src/TestExplorer/TestParsers/SwiftTestingOutputParser.ts b/src/TestExplorer/TestParsers/SwiftTestingOutputParser.ts index 769c5bdf4..381bd3ad0 100644 --- a/src/TestExplorer/TestParsers/SwiftTestingOutputParser.ts +++ b/src/TestExplorer/TestParsers/SwiftTestingOutputParser.ts @@ -381,7 +381,7 @@ export class SwiftTestingOutputParser { .map(message => MessageRenderer.render(message)) .join("\n"); - if (payload.issue.isFailure === false) { + if (payload.issue.isFailure === false && !payload.issue.isKnown) { return; }