fix: correctly print number of interrupted tests in markdown (#28228)
This commit is contained in:
parent
62d4c3fe02
commit
34c8516d09
|
|
@ -57,7 +57,7 @@ class MarkdownReporter extends BaseReporter {
|
||||||
}
|
}
|
||||||
if (summary.interrupted.length) {
|
if (summary.interrupted.length) {
|
||||||
lines.push(`<details>`);
|
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/>');
|
this._printTestList(':warning:', summary.interrupted, lines, ' <br/>');
|
||||||
lines.push(`</details>`);
|
lines.push(`</details>`);
|
||||||
lines.push(``);
|
lines.push(``);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue