playwright/packages/installation-tests/validate-dependencies.js

8 lines
203 B
JavaScript
Raw Normal View History

const playwright = require('playwright');
process.env.PLAYWRIGHT_SKIP_VALIDATE_HOST_REQUIREMENTS = 1;
(async () => {
const browser = await playwright.chromium.launch();
await browser.close();
})();