mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 14:11:50 +03:00
fix(webkit): report event source (#2430)
This rolls webkit to r1250 where we report event source. Fixes #2189
This commit is contained in:
parent
b7df4d57a4
commit
e5875310db
@ -10,7 +10,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1246"
|
"revision": "1250"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -260,7 +260,7 @@ describe('Response.statusText', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe('Request.resourceType', 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'};
|
const SSE_MESSAGE = {foo: 'bar'};
|
||||||
// 1. Setup server-sent events on server that immediately sends a message to the client.
|
// 1. Setup server-sent events on server that immediately sends a message to the client.
|
||||||
server.setRoute('/sse', (req, res) => {
|
server.setRoute('/sse', (req, res) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user