test(refresher): disable pull to refresher tests (#25887)

This commit is contained in:
Sean Perkins
2022-09-08 11:56:44 -04:00
committed by GitHub
parent ad46045bcc
commit 2969169f50
2 changed files with 4 additions and 2 deletions

View File

@ -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');
});

View File

@ -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');
});