chore: remove stray log

This commit is contained in:
Pavel Feldman
2020-10-09 20:52:47 -07:00
parent 7e747a1e78
commit f855785290
-1
View File
@@ -48,7 +48,6 @@ export function runServer() {
transport.onmessage = (message: string) => dispatcherConnection.dispatch(JSON.parse(message));
dispatcherConnection.onmessage = (message: string) => transport.send(JSON.stringify(message));
console.log(require('playwright/browsers.json')['browsers']);
const playwright = new Playwright(__dirname, require('playwright/browsers.json')['browsers']);
(playwright as any).electron = new Electron();
new PlaywrightDispatcher(dispatcherConnection.rootDispatcher(), playwright);