Skip to content

Commit 0bc9f9b

Browse files
authored
Add missing build file (microsoft#161373)
1 parent 772289f commit 0bc9f9b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

build/azure-pipelines/common/installPlaywright.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@
33
* Copyright (c) Microsoft Corporation. All rights reserved.
44
* Licensed under the MIT License. See License.txt in the project root for license information.
55
*--------------------------------------------------------------------------------------------*/
6-
Object.defineProperty(exports, "__esModule", { value: true });
76
process.env.DEBUG = 'pw:install'; // enable logging for this (https://github.com/microsoft/playwright/issues/17394)
8-
const retry_1 = require("./retry");
97
const { installDefaultBrowsersForNpmInstall } = require('playwright-core/lib/server');
108
async function install() {
11-
await (0, retry_1.retry)(() => installDefaultBrowsersForNpmInstall());
9+
await installDefaultBrowsersForNpmInstall();
1210
}
1311
install();

0 commit comments

Comments
 (0)