From 66f2ecbdcef536a30533a89346fc34ca80a0a152 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Fri, 3 Mar 2023 11:42:29 -0500 Subject: [PATCH] test(picker-column-internal): skip flaky scrolling tests (#26910) --- .../test/basic/picker-column-internal.e2e.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/src/components/picker-column-internal/test/basic/picker-column-internal.e2e.ts b/core/src/components/picker-column-internal/test/basic/picker-column-internal.e2e.ts index 455a0a25a9..c42c3c1a89 100644 --- a/core/src/components/picker-column-internal/test/basic/picker-column-internal.e2e.ts +++ b/core/src/components/picker-column-internal/test/basic/picker-column-internal.e2e.ts @@ -32,7 +32,8 @@ test.describe('picker-column-internal', () => { expect(activeColumn).not.toBeNull(); }); - test('scrolling should change the active item', async ({ page, skip }) => { + // TODO FW-3616 + test.skip('scrolling should change the active item', async ({ page, skip }) => { skip.browser('firefox', 'https://bugzilla.mozilla.org/show_bug.cgi?id=1766890'); await page.locator('#default').evaluate((el: HTMLIonPickerColumnInternalElement) => { @@ -57,7 +58,8 @@ test.describe('picker-column-internal', () => { expect(ionChangeSpy).not.toHaveReceivedEvent(); }); - test('should emit ionChange when the picker is scrolled', async ({ page, skip }) => { + // TODO FW-3616 + test.skip('should emit ionChange when the picker is scrolled', async ({ page, skip }) => { skip.browser('firefox', 'https://bugzilla.mozilla.org/show_bug.cgi?id=1766890'); const ionChangeSpy = await page.spyOnEvent('ionChange');