Skip to content

Commit 12c848b

Browse files
committed
test(infinite): disable flaky test when running in CI
1 parent c63ec2e commit 12c848b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

core/src/components/infinite-scroll/test/top/infinite-scroll.e2e.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import { configs, test } from '@utils/test/playwright';
33

44
configs({ modes: ['md'], directions: ['ltr'] }).forEach(({ title, config }) => {
55
test.describe(title('infinite-scroll: top'), () => {
6-
test('should load more items when scrolled to the top', async ({ page }) => {
6+
test('should load more items when scrolled to the top', async ({ page, skip }) => {
7+
// TODO(FW-6394): remove once flakinq issue is resolved
8+
skip.browser('webkit', 'Safari is flaky on CI');
9+
710
await page.goto('/src/components/infinite-scroll/test/top', config);
811

912
const ionInfiniteComplete = await page.spyOnEvent('ionInfiniteComplete');

0 commit comments

Comments
 (0)