Skip to content

Commit

Permalink
Update packages/server/lib/browsers/webkit-automation.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
flotwig authored Aug 17, 2022
1 parent bd3606c commit 8b1f855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/lib/browsers/webkit-automation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export class WebkitAutomation {

private attachListeners (page: playwright.Page) {
// emit preRequest to proxy
page.on('request', async (request) => {
page.on('request', (request) => {
// ignore socket.io events
// TODO: use config.socketIoRoute here instead
if (request.url().includes('/__socket') || request.url().includes('/__cypress')) return
Expand Down

0 comments on commit 8b1f855

Please sign in to comment.