Skip to content

Commit

Permalink
test(webkit): disable failing wk test
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman committed Mar 6, 2020
1 parent a802b00 commit 3288057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/page.spec.js
Expand Up @@ -1119,7 +1119,7 @@ module.exports.describe = function({testRunner, expect, headless, playwright, FF
await page.press('textarea', 'a');
expect(await page.evaluate(() => document.querySelector('textarea').value)).toBe('a');
});
it('Frame.press should work', async({page, server}) => {
it.fail(WEBKIT)('Frame.press should work', async({page, server}) => {
await page.setContent(`<iframe name=inner src="${server.PREFIX}/input/textarea.html"></iframe>`);
const frame = page.frame('inner');
await frame.press('textarea', 'a');
Expand Down

0 comments on commit 3288057

Please sign in to comment.