Skip to content

Commit 64f18fb

Browse files
authored
test(picker-internal): skip overlay test on webkit (#25267)
1 parent e3c996d commit 64f18fb

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

core/src/components/picker-internal/test/basic/picker-internal.e2e.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import { expect } from '@playwright/test';
22
import { test } from '@utils/test/playwright';
33

4-
const isMobileSafariLinux = (userAgent?: string) => {
5-
return userAgent?.includes('Linux') === true && userAgent?.includes('Mobile Safari') === true;
6-
};
7-
84
test.describe('picker-internal', () => {
95
test('inline pickers should not have visual regression', async ({ page }) => {
106
await page.goto(`/src/components/picker-internal/test/basic`);
@@ -18,10 +14,7 @@ test.describe('picker-internal', () => {
1814

1915
test.describe('within overlay:', () => {
2016
// TODO (FW-1397): Remove this test.skip when the issue is fixed.
21-
test.skip(
22-
({ userAgent }) => isMobileSafariLinux(userAgent),
23-
'Mobile Safari on Linux renders the selected option incorrectly'
24-
);
17+
test.skip('Flaky test', 'Mobile Safari and Chrome on Linux renders the selected option incorrectly');
2518

2619
test('popover: should not have visual regression', async ({ page }) => {
2720
await page.goto(`/src/components/picker-internal/test/basic`);

0 commit comments

Comments
 (0)