From 20388d36304c041cf0c47a2bfa2deccc7df99777 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 25 Apr 2024 09:13:10 -0700 Subject: [PATCH] fix lint --- packages/playwright/src/runner/reporters.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright/src/runner/reporters.ts b/packages/playwright/src/runner/reporters.ts index 066c2e779a..cbad53e892 100644 --- a/packages/playwright/src/runner/reporters.ts +++ b/packages/playwright/src/runner/reporters.ts @@ -96,7 +96,7 @@ function reporterOptions(config: FullConfigInternal, mode: 'list' | 'test' | 'me } function computeCommandHash(config: FullConfigInternal) { - let parts = []; + const parts = []; // Include project names for readability. if (config.cliProjectFilter) parts.push(...config.cliProjectFilter);