From 02ca63b381a999a0d4ce62ecac875474b33f30cd Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Fri, 7 Apr 2023 09:52:04 -0700 Subject: [PATCH] chore: use separator when printing titles in the list mode (#22269) Fixes https://github.com/microsoft/playwright/issues/22267 --- packages/playwright-test/src/runner/reporters.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright-test/src/runner/reporters.ts b/packages/playwright-test/src/runner/reporters.ts index 66edb08bd7..3cf8013b3f 100644 --- a/packages/playwright-test/src/runner/reporters.ts +++ b/packages/playwright-test/src/runner/reporters.ts @@ -93,7 +93,7 @@ export class ListModeReporter implements Reporter { const location = `${path.relative(config.rootDir, test.location.file)}:${test.location.line}:${test.location.column}`; const projectTitle = projectName ? `[${projectName}] › ` : ''; // eslint-disable-next-line no-console - console.log(` ${projectTitle}${location} › ${titles.join(' ')}`); + console.log(` ${projectTitle}${location} › ${titles.join(' › ')}`); files.add(test.location.file); } // eslint-disable-next-line no-console