mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 01:52:19 +08:00
test(picker-column-internal): skip flaky scrolling tests (#26910)
This commit is contained in:
@ -32,7 +32,8 @@ test.describe('picker-column-internal', () => {
|
|||||||
expect(activeColumn).not.toBeNull();
|
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');
|
skip.browser('firefox', 'https://bugzilla.mozilla.org/show_bug.cgi?id=1766890');
|
||||||
|
|
||||||
await page.locator('#default').evaluate((el: HTMLIonPickerColumnInternalElement) => {
|
await page.locator('#default').evaluate((el: HTMLIonPickerColumnInternalElement) => {
|
||||||
@ -57,7 +58,8 @@ test.describe('picker-column-internal', () => {
|
|||||||
expect(ionChangeSpy).not.toHaveReceivedEvent();
|
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');
|
skip.browser('firefox', 'https://bugzilla.mozilla.org/show_bug.cgi?id=1766890');
|
||||||
|
|
||||||
const ionChangeSpy = await page.spyOnEvent('ionChange');
|
const ionChangeSpy = await page.spyOnEvent('ionChange');
|
||||||
|
Reference in New Issue
Block a user