This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Description
I just upgraded to version 1.0.0 and immediately noticed that my test suite takes much longer to run, now about 18 seconds when it finished in about 10 seconds before. My guess is there is something slow going on during startup because the first test result takes much longer to show up as done.
Even worse, every other time or so that I run my tests I get the following error during startup:
C:\path_to_project\node_modules\playwright-chromium\lib\server\chromium.js:211
session.queue.push(parsedMessage);
^
TypeError: Cannot read property 'push' of undefined
at WebSocket.<anonymous> (C:\path_to_project\node_modules\playwright-chromium\lib\server\chromium.js:211:27)
at WebSocket.emit (events.js:315:20)
at Receiver.receiverOnMessage (C:\path_to_project\node_modules\ws\lib\websocket.js:789:20)
at Receiver.emit (events.js:315:20)
at Receiver.dataMessage (C:\path_to_project\node_modules\ws\lib\receiver.js:422:14)
at Receiver.getData (C:\path_to_project\node_modules\ws\lib\receiver.js:352:17)
at Receiver.startLoop (C:\path_to_project\node_modules\ws\lib\receiver.js:138:22)
at Receiver._write (C:\path_to_project\node_modules\ws\lib\receiver.js:74:10)
at writeOrBuffer (_stream_writable.js:352:12)
at Receiver.Writable.write (_stream_writable.js:303:10)
This is not an error that I have seen before and when I revert to version 0.2.5 these issues go away.