We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 334096e commit d0eaec3Copy full SHA for d0eaec3
src/install/browserFetcher.ts
@@ -26,7 +26,7 @@ import { debugLogger } from '../utils/debugLogger';
26
27
export async function downloadBrowserWithProgressBar(registry: Registry, browserName: BrowserName): Promise<boolean> {
28
const browserDirectory = registry.browserDirectory(browserName);
29
- const progressBarName = `${browserName} v${registry.revision(browserName)}`;
+ const progressBarName = `Playwright build of ${browserName} v${registry.revision(browserName)}`;
30
if (await existsAsync(browserDirectory)) {
31
// Already downloaded.
32
debugLogger.log('install', `browser ${browserName} is already downloaded.`);
0 commit comments