Skip to content

Commit b02f1af

Browse files
test(radio): skip flaky tests (#28211)
1 parent de1a4c5 commit b02f1af

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

core/src/components/radio/test/legacy/a11y/radio.e2e.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import { configs, test } from '@utils/test/playwright';
66
*/
77
configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ title, config }) => {
88
test.describe(title('radio: a11y'), () => {
9-
test('tabbing should switch between radio groups', async ({ page, pageUtils }) => {
9+
// TODO(FW-5218)
10+
test.fixme('tabbing should switch between radio groups', async ({ page, pageUtils }) => {
1011
await page.goto(`/src/components/radio/test/legacy/a11y`, config);
1112

1213
const firstGroupRadios = page.locator('#first-group ion-radio');
@@ -21,7 +22,8 @@ configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ title, config }) =>
2122
await pageUtils.pressKeys('shift+Tab');
2223
await expect(firstGroupRadios.nth(0)).toBeFocused();
2324
});
24-
test('using arrow keys should move between enabled radios within group', async ({ page, pageUtils }) => {
25+
// TODO(FW-5218)
26+
test.fixme('using arrow keys should move between enabled radios within group', async ({ page, pageUtils }) => {
2527
await page.goto(`/src/components/radio/test/legacy/a11y`, config);
2628

2729
const firstGroupRadios = page.locator('#first-group ion-radio');

0 commit comments

Comments
 (0)