diff --git a/core/src/components/refresher/test/basic/refresher.e2e.ts b/core/src/components/refresher/test/basic/refresher.e2e.ts index c67fca972a..e5000898b2 100644 --- a/core/src/components/refresher/test/basic/refresher.e2e.ts +++ b/core/src/components/refresher/test/basic/refresher.e2e.ts @@ -3,7 +3,8 @@ import { test } from '@utils/test/playwright'; import { pullToRefresh } from '../test.utils'; -test.describe('refresher: basic', () => { +// TODO: Enable this test when touch events/gestures are better supported in Playwright: https://github.com/microsoft/playwright/issues/2903 +test.skip('refresher: basic', () => { test.beforeEach(async ({ page }) => { await page.goto('/src/components/refresher/test/basic'); }); diff --git a/core/src/components/refresher/test/scroll-target/refresher.e2e.ts b/core/src/components/refresher/test/scroll-target/refresher.e2e.ts index 751de7c63f..255f96ad98 100644 --- a/core/src/components/refresher/test/scroll-target/refresher.e2e.ts +++ b/core/src/components/refresher/test/scroll-target/refresher.e2e.ts @@ -3,7 +3,8 @@ import { test } from '@utils/test/playwright'; import { pullToRefresh } from '../test.utils'; -test.describe('refresher: custom scroll target', () => { +// TODO: Enable this test when touch events/gestures are better supported in Playwright: https://github.com/microsoft/playwright/issues/2903 +test.skip('refresher: custom scroll target', () => { test.beforeEach(async ({ page }) => { await page.goto('/src/components/refresher/test/scroll-target'); });