test(picker-column-internal): skip flaky scrolling tests (#26910)

This commit is contained in:
Liam DeBeasi
2023-03-03 11:42:29 -05:00
committed by GitHub
parent d1b885d5be
commit 66f2ecbdce

View File

@ -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');