From 36cc5103bf03ea25583a90263cfa4e4cc8f7d88b Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Mon, 21 Nov 2022 17:44:32 -0500 Subject: [PATCH] test(range): disable gesture test (#26331) --- core/src/components/range/test/range-events.e2e.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/components/range/test/range-events.e2e.ts b/core/src/components/range/test/range-events.e2e.ts index 6513197f5b..e080eaf018 100644 --- a/core/src/components/range/test/range-events.e2e.ts +++ b/core/src/components/range/test/range-events.e2e.ts @@ -82,7 +82,8 @@ test.describe('range: events:', () => { }); test.describe('ionInput', () => { - test('should emit when the knob is dragged', async ({ page }) => { + // TODO(FW-2873) Enable this test when touch events/gestures are better supported in Playwright + test.skip('should emit when the knob is dragged', async ({ page }) => { await page.setContent(``); const rangeHandle = page.locator('ion-range .range-knob-handle');