File tree Expand file tree Collapse file tree 1 file changed +0
-32
lines changed
packages/e2e-test-app-fabric/test Expand file tree Collapse file tree 1 file changed +0
-32
lines changed Original file line number Diff line number Diff line change @@ -387,38 +387,6 @@ describe('Pressable Tests', () => {
387
387
} ,
388
388
) ;
389
389
} ) ;
390
- test ( 'Pressable should support different children configurations' , async ( ) => {
391
- const searchBox = await app . findElementByTestID ( 'example_search' ) ;
392
- await app . waitUntil (
393
- async ( ) => {
394
- await searchBox . setValue ( 'Cha' ) ;
395
- return ( await searchBox . getText ( ) ) === 'Cha' ;
396
- } ,
397
- {
398
- interval : 1500 ,
399
- timeout : 5000 ,
400
- timeoutMsg : `Unable to enter correct search text into test searchbox.` ,
401
- } ,
402
- ) ;
403
-
404
- // Test pressable with different content based on press state
405
- const component = await app . findElementByTestID ( 'one_press_me_button' ) ;
406
- await component . waitForDisplayed ( { timeout : 20000 } ) ;
407
- const initialDump = await dumpVisualTree ( 'one_press_me_button' ) ;
408
- expect ( initialDump ) . toMatchSnapshot ( ) ;
409
-
410
- await app . waitUntil (
411
- async ( ) => {
412
- await searchBox . setValue ( [ 'Backspace' , 'Backspace' , 'Backspace' ] ) ;
413
- return ( await searchBox . getText ( ) ) === 'Search...' ;
414
- } ,
415
- {
416
- interval : 1500 ,
417
- timeout : 5000 ,
418
- timeoutMsg : `Unable to enter correct search text into test searchbox.` ,
419
- } ,
420
- ) ;
421
- } ) ;
422
390
423
391
test ( 'Pressables can have advanced borders' , async ( ) => {
424
392
const component = await app . findElementByTestID (
You can’t perform that action at this time.
0 commit comments