mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 13:45:36 +03:00
test(wk): unskip passing navigation test (#294)
This commit is contained in:
parent
82f6e61295
commit
ac2ea265fe
@ -55,8 +55,7 @@ module.exports.addTests = function({testRunner, expect, FFOX, CHROME, WEBKIT}) {
|
||||
expect(requests.length).toBe(1);
|
||||
expect(requests[0].frame()).toBe(page.mainFrame());
|
||||
});
|
||||
// FIXME: needs frameAttached event, otherwise it introduces too many hacks in the lib.
|
||||
it.skip(WEBKIT)('should work for subframe navigation request', async({page, server}) => {
|
||||
it('should work for subframe navigation request', async({page, server}) => {
|
||||
await page.goto(server.EMPTY_PAGE);
|
||||
const requests = [];
|
||||
page.on('request', request => !utils.isFavicon(request) && requests.push(request));
|
||||
|
Loading…
Reference in New Issue
Block a user