test(radio): skip flaky test (#26972)

This commit is contained in:
Liam DeBeasi
2023-03-15 14:04:22 -04:00
committed by GitHub
parent 762925be90
commit 118b6ba25f

View File

@ -21,7 +21,9 @@ test.describe('radio: a11y', () => {
await page.keyboard.press(`Shift+${tabKey}`);
await expect(firstGroupRadios.nth(0)).toBeFocused();
});
test('using arrow keys should move between enabled radios within group', async ({ page, browserName }) => {
// TODO FW-3747
test.skip('using arrow keys should move between enabled radios within group', async ({ page, browserName }) => {
const tabKey = browserName === 'webkit' ? 'Alt+Tab' : 'Tab';
await page.goto(`/src/components/radio/test/a11y`);