mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 22:22:53 +03:00
6 lines
206 B
JavaScript
6 lines
206 B
JavaScript
(async() => {
|
|
const [, , playwrightRoot, options] = process.argv;
|
|
const browserServer = await require(playwrightRoot).launchServer(JSON.parse(options));
|
|
console.log(browserServer.wsEndpoint());
|
|
})();
|