Welcome to mirror list, hosted at ThFree Co, Russian Federation.

installPlaywright.ts « common « azure-pipelines « build - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d837a554137201fd276aa9efe50fea6dad45b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

import { retry } from './retry';
const { installDefaultBrowsersForNpmInstall } = require('playwright-core/lib/server');

async function install() {
	await retry(() => installDefaultBrowsersForNpmInstall());
}

install();