playwright/test/fixtures/closeme.js

6 lines
238 B
JavaScript
Raw Normal View History

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