From 118b6ba25f9939939deb7d1782057fc062d266cf Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 15 Mar 2023 14:04:22 -0400 Subject: [PATCH] test(radio): skip flaky test (#26972) --- core/src/components/radio/test/a11y/radio.e2e.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/components/radio/test/a11y/radio.e2e.ts b/core/src/components/radio/test/a11y/radio.e2e.ts index 81c7bd84cc..7521ce483c 100644 --- a/core/src/components/radio/test/a11y/radio.e2e.ts +++ b/core/src/components/radio/test/a11y/radio.e2e.ts @@ -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`);