test(range): disable gesture test (#26331)

This commit is contained in:
Liam DeBeasi
2022-11-21 17:44:32 -05:00
committed by GitHub
parent f6c9762ea0
commit 36cc5103bf

View File

@ -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(`<ion-range></ion-range>`);
const rangeHandle = page.locator('ion-range .range-knob-handle');