From dc152ad614cc7f83bc92ec5bc8d8b97238442d5a Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Tue, 16 Jul 2024 18:38:50 +0200 Subject: [PATCH] fix(list reporter): add "return" back in --- packages/playwright/src/reporters/list.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/playwright/src/reporters/list.ts b/packages/playwright/src/reporters/list.ts index 642826d884..01ec7825ae 100644 --- a/packages/playwright/src/reporters/list.ts +++ b/packages/playwright/src/reporters/list.ts @@ -117,6 +117,7 @@ class ListReporter extends BaseReporter { if (!this._printSteps) { if (isTTY) this._updateLine(this._testRows.get(test)!, colors.dim(formatTestTitle(this.config, test, step.parent)) + this._retrySuffix(result), this._testPrefix(testIndex, '')); + return; } const index = this.getStepIndex(testIndex, result, step);