Skip to content

Commit 3af663f

Browse files
authored
fix: Support html markdown for TestNG output (#1346)
Signed-off-by: sheche <sheche@microsoft.com>
1 parent 65639c0 commit 3af663f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/runners/testngRunner/TestNGRunnerResultAnalyzer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ export class TestNGRunnerResultAnalyzer extends RunnerResultAnalyzer {
7777
if (outputData.attributes.trace) {
7878
const markdownTrace: MarkdownString = new MarkdownString();
7979
markdownTrace.isTrusted = true;
80+
markdownTrace.supportHtml = true;
8081

8182
for (const line of outputData.attributes.trace.split(/\r?\n/)) {
8283
this.processStackTrace(line, markdownTrace, undefined, this.currentItem, this.projectName);

0 commit comments

Comments
 (0)