Skip to content

Commit

Permalink
fix(webkit): report event source (#2430)
Browse files Browse the repository at this point in the history
This rolls webkit to r1250 where we report event source.

Fixes #2189
  • Loading branch information
aslushnikov authored Jun 1, 2020
1 parent b7df4d5 commit e587531
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
{
"name": "webkit",
"revision": "1246"
"revision": "1250"
}
]
}
2 changes: 1 addition & 1 deletion test/network.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ describe('Response.statusText', function() {
});

describe('Request.resourceType', function() {
it.fail(WEBKIT)('should return event source', async ({page, server}) => {
it('should return event source', async ({page, server}) => {
const SSE_MESSAGE = {foo: 'bar'};
// 1. Setup server-sent events on server that immediately sends a message to the client.
server.setRoute('/sse', (req, res) => {
Expand Down

0 comments on commit e587531

Please sign in to comment.