diff --git a/packages/playwright/src/reporters/markdown.ts b/packages/playwright/src/reporters/markdown.ts index 52f67a548e..a32d7bda42 100644 --- a/packages/playwright/src/reporters/markdown.ts +++ b/packages/playwright/src/reporters/markdown.ts @@ -57,7 +57,7 @@ class MarkdownReporter extends BaseReporter { } if (summary.interrupted.length) { lines.push(`
`); - lines.push(`${summary.flaky.length} interrupted`); + lines.push(`${summary.interrupted.length} interrupted`); this._printTestList(':warning:', summary.interrupted, lines, '
'); lines.push(`
`); lines.push(``);