Skip to content

Commit

Permalink
fix: correctly print number of interrupted tests in markdown (microso…
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s authored Nov 18, 2023
1 parent 62d4c3f commit 34c8516
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/playwright/src/reporters/markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class MarkdownReporter extends BaseReporter {
}
if (summary.interrupted.length) {
lines.push(`<details>`);
lines.push(`<summary><b>${summary.flaky.length} interrupted</b></summary>`);
lines.push(`<summary><b>${summary.interrupted.length} interrupted</b></summary>`);
this._printTestList(':warning:', summary.interrupted, lines, ' <br/>');
lines.push(`</details>`);
lines.push(``);
Expand Down

0 comments on commit 34c8516

Please sign in to comment.