playwright/test/fixtures/closeme.js

6 lines
206 B
JavaScript
Raw Normal View History

2019-11-19 05:18:28 +03:00
(async() => {
const [, , playwrightRoot, options] = process.argv;
2019-12-20 01:51:49 +03:00
const browserServer = await require(playwrightRoot).launchServer(JSON.parse(options));
console.log(browserServer.wsEndpoint());
2019-11-19 05:18:28 +03:00
})();