From ddfff72d63b6cccd91e396384167ff73158a92c1 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Thu, 21 Sep 2023 15:27:18 -0400 Subject: [PATCH] test(radio): skip flaky tests --- core/src/components/radio/test/legacy/a11y/radio.e2e.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/src/components/radio/test/legacy/a11y/radio.e2e.ts b/core/src/components/radio/test/legacy/a11y/radio.e2e.ts index df9c3badc30..c3567e26cf0 100644 --- a/core/src/components/radio/test/legacy/a11y/radio.e2e.ts +++ b/core/src/components/radio/test/legacy/a11y/radio.e2e.ts @@ -6,7 +6,8 @@ import { configs, test } from '@utils/test/playwright'; */ configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ title, config }) => { test.describe(title('radio: a11y'), () => { - test('tabbing should switch between radio groups', async ({ page, pageUtils }) => { + // TODO(FW-5218) + test.fixme('tabbing should switch between radio groups', async ({ page, pageUtils }) => { await page.goto(`/src/components/radio/test/legacy/a11y`, config); const firstGroupRadios = page.locator('#first-group ion-radio'); @@ -21,7 +22,8 @@ configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ title, config }) => await pageUtils.pressKeys('shift+Tab'); await expect(firstGroupRadios.nth(0)).toBeFocused(); }); - test('using arrow keys should move between enabled radios within group', async ({ page, pageUtils }) => { + // TODO(FW-5218) + test.fixme('using arrow keys should move between enabled radios within group', async ({ page, pageUtils }) => { await page.goto(`/src/components/radio/test/legacy/a11y`, config); const firstGroupRadios = page.locator('#first-group ion-radio');