Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
Loading