Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/build/azure-pipelines/common/installPlaywright.js
3520 views
1
"use strict";
2
/*---------------------------------------------------------------------------------------------
3
* Copyright (c) Microsoft Corporation. All rights reserved.
4
* Licensed under the MIT License. See License.txt in the project root for license information.
5
*--------------------------------------------------------------------------------------------*/
6
process.env.DEBUG = 'pw:install'; // enable logging for this (https://github.com/microsoft/playwright/issues/17394)
7
const { installDefaultBrowsersForNpmInstall } = require('playwright-core/lib/server');
8
async function install() {
9
await installDefaultBrowsersForNpmInstall();
10
}
11
install();
12
//# sourceMappingURL=installPlaywright.js.map
13