File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
core/src/components/picker-internal/test/basic Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change 11import { expect } from '@playwright/test' ;
22import { test } from '@utils/test/playwright' ;
33
4- const isMobileSafariLinux = ( userAgent ?: string ) => {
5- return userAgent ?. includes ( 'Linux' ) === true && userAgent ?. includes ( 'Mobile Safari' ) === true ;
6- } ;
7-
84test . 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` ) ;
You can’t perform that action at this time.
0 commit comments