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 *--------------------------------------------------------------------------------------------*/ 6process.env.DEBUG = 'pw:install'; // enable logging for this (https://github.com/microsoft/playwright/issues/17394) 7const { installDefaultBrowsersForNpmInstall } = require('playwright-core/lib/server'); 8async function install() { 9 await installDefaultBrowsersForNpmInstall(); 10} 11install(); 12//# sourceMappingURL=installPlaywright.js.map 13