test: skip a couple of a11y tests on Edge temporarily (#18824)

This commit is contained in:
Pavel Feldman 2022-11-15 12:02:06 -08:00 committed by GitHub
parent 250bc9fb2f
commit 705df52500
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -141,8 +141,9 @@ it('should not report text nodes inside controls', async function({ page, browse
expect(await page.accessibility.snapshot()).toEqual(golden);
});
it('rich text editable fields should have children', async function({ page, browserName, browserVersion }) {
it('rich text editable fields should have children', async function({ page, browserName, browserVersion, channel }) {
it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy');
it.skip(channel && channel.startsWith('msedge'), 'Edge is missing a Chromium fix');
await page.setContent(`
<div contenteditable="true">
@ -174,8 +175,9 @@ it('rich text editable fields should have children', async function({ page, brow
expect(snapshot.children[0]).toEqual(golden);
});
it('rich text editable fields with role should have children', async function({ page, browserName, browserMajorVersion, browserVersion }) {
it('rich text editable fields with role should have children', async function({ page, browserName, browserMajorVersion, browserVersion, channel }) {
it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy');
it.skip(channel && channel.startsWith('msedge'), 'Edge is missing a Chromium fix');
await page.setContent(`
<div contenteditable="true" role='textbox'>