playwright/test/fixtures/closeme.js
2019-11-19 10:58:15 -08:00

6 lines
188 B
JavaScript

(async() => {
const [, , playwrightRoot, options] = process.argv;
const browser = await require(playwrightRoot).launch(JSON.parse(options));
console.log(browser.wsEndpoint());
})();