From 2969169f50e72d97b1e0c352249de1e474107e0a Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Thu, 8 Sep 2022 11:56:44 -0400 Subject: [PATCH] test(refresher): disable pull to refresher tests (#25887) --- core/src/components/refresher/test/basic/refresher.e2e.ts | 3 ++- .../components/refresher/test/scroll-target/refresher.e2e.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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'); });