playwright/test/fixtures/closeme.js
2019-11-18 18:36:16 -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());
})();