diff --git a/core/src/components/infinite-scroll/test/top/infinite-scroll.e2e.ts b/core/src/components/infinite-scroll/test/top/infinite-scroll.e2e.ts index ae2aa9c1b63..31a822ee0f7 100644 --- a/core/src/components/infinite-scroll/test/top/infinite-scroll.e2e.ts +++ b/core/src/components/infinite-scroll/test/top/infinite-scroll.e2e.ts @@ -3,7 +3,10 @@ import { configs, test } from '@utils/test/playwright'; configs({ modes: ['md'], directions: ['ltr'] }).forEach(({ title, config }) => { test.describe(title('infinite-scroll: top'), () => { - test('should load more items when scrolled to the top', async ({ page }) => { + test('should load more items when scrolled to the top', async ({ page, skip }) => { + // TODO(FW-6394): remove once flaky issue is resolved + skip.browser('webkit', 'Safari is flaky on CI'); + await page.goto('/src/components/infinite-scroll/test/top', config); const ionInfiniteComplete = await page.spyOnEvent('ionInfiniteComplete');