mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
test(radio): skip flaky test (#26972)
This commit is contained in:
@ -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`);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user