Skip to content

Commit

Permalink
chore: clarify that we download Playwright browser builds (#6938)
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov authored Jun 7, 2021
1 parent 334096e commit d0eaec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/install/browserFetcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { debugLogger } from '../utils/debugLogger';

export async function downloadBrowserWithProgressBar(registry: Registry, browserName: BrowserName): Promise<boolean> {
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.`);
Expand Down

0 comments on commit d0eaec3

Please sign in to comment.