Skip to content

Commit e587531

Browse files
authored
fix(webkit): report event source (#2430)
This rolls webkit to r1250 where we report event source. Fixes #2189
1 parent b7df4d5 commit e587531

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

browsers.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
{
1212
"name": "webkit",
13-
"revision": "1246"
13+
"revision": "1250"
1414
}
1515
]
1616
}

test/network.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ describe('Response.statusText', function() {
260260
});
261261

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

0 commit comments

Comments
 (0)