From d0eaec368b4e6678337dff783327d5f007d25be5 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Mon, 7 Jun 2021 14:16:42 -0700 Subject: [PATCH] chore: clarify that we download Playwright browser builds (#6938) --- src/install/browserFetcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install/browserFetcher.ts b/src/install/browserFetcher.ts index e28186ec80..57aec190a9 100644 --- a/src/install/browserFetcher.ts +++ b/src/install/browserFetcher.ts @@ -26,7 +26,7 @@ import { debugLogger } from '../utils/debugLogger'; export async function downloadBrowserWithProgressBar(registry: Registry, browserName: BrowserName): Promise { const browserDirectory = registry.browserDirectory(browserName); - const progressBarName = `${browserName} v${registry.revision(browserName)}`; + const progressBarName = `Playwright build of ${browserName} v${registry.revision(browserName)}`; if (await existsAsync(browserDirectory)) { // Already downloaded. debugLogger.log('install', `browser ${browserName} is already downloaded.`);