Skip to content

Commit 2bed5a8

Browse files
fix: avoid broken URL in reporter message (#35805)
Signed-off-by: Akshay Pilankar <[email protected]>
1 parent a84ba4d commit 2bed5a8

File tree

1 file changed

+1
-1
lines changed
  • packages/playwright/src/reporters

1 file changed

+1
-1
lines changed

packages/playwright/src/reporters/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ export class TerminalReporter implements ReporterV2 {
292292
console.log(this.screen.colors.yellow(' Slow test file: ') + file + this.screen.colors.yellow(` (${milliseconds(duration)})`));
293293
});
294294
if (slowTests.length)
295-
console.log(this.screen.colors.yellow(' Consider running tests from slow files in parallel, see https://playwright.dev/docs/test-parallel.'));
295+
console.log(this.screen.colors.yellow(' Consider running tests from slow files in parallel. See: https://playwright.dev/docs/test-parallel'));
296296
}
297297

298298
private _printSummary(summary: string) {

0 commit comments

Comments
 (0)