From e9ca483666ace111c73f574a8d51b1b3485c8246 Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Sun, 12 Feb 2023 10:00:40 -0800 Subject: [PATCH] chore: dim watch separator (#20836) --- packages/playwright-test/src/reporters/base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright-test/src/reporters/base.ts b/packages/playwright-test/src/reporters/base.ts index 5ffdcf0b31..3b3f3cc619 100644 --- a/packages/playwright-test/src/reporters/base.ts +++ b/packages/playwright-test/src/reporters/base.ts @@ -420,7 +420,7 @@ export function separator(text: string = ''): string { if (text) text += ' '; const columns = Math.min(100, process.stdout?.columns || 100); - return text + colors.gray('─'.repeat(Math.max(0, columns - text.length))); + return text + colors.dim('─'.repeat(Math.max(0, columns - text.length))); } function indent(lines: string, tab: string) {