File tree Expand file tree Collapse file tree 3 files changed +40
-0
lines changed
generatedTypes/src/components Expand file tree Collapse file tree 3 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ import { RenderAPI } from '@testing-library/react-native' ;
2
+ import { ReactTestInstance } from 'react-test-renderer' ;
3
+ declare const ButtonDriverFactory : ( { wrapperComponent, testID } : {
4
+ wrapperComponent : RenderAPI ;
5
+ testID : string ;
6
+ } ) => Promise < {
7
+ exists : ( ) => boolean ;
8
+ getRootElement : ( ) => ReactTestInstance | null ;
9
+ isClickable : ( ) => boolean ;
10
+ click : ( ) => void ;
11
+ getLabelRootElement : ( ) => ReactTestInstance | null ;
12
+ isLabelExists : ( ) => boolean ;
13
+ getLabelContent : ( ) => any ;
14
+ getIconRootElement : ( ) => ReactTestInstance | null ;
15
+ isIconExists : ( ) => boolean ;
16
+ } > ;
17
+ export default ButtonDriverFactory ;
Original file line number Diff line number Diff line change
1
+ import { RenderAPI } from '@testing-library/react-native' ;
2
+ import { ReactTestInstance } from 'react-test-renderer' ;
3
+ declare const ImageDriverFactory : ( { wrapperComponent, testID } : {
4
+ wrapperComponent : RenderAPI ;
5
+ testID : string ;
6
+ } ) => Promise < {
7
+ exists : ( ) => boolean ;
8
+ getRootElement : ( ) => ReactTestInstance | null ;
9
+ } > ;
10
+ export default ImageDriverFactory ;
Original file line number Diff line number Diff line change
1
+ import { RenderAPI } from '@testing-library/react-native' ;
2
+ import { ReactTestInstance } from 'react-test-renderer' ;
3
+ declare const TextDriverFactory : ( { wrapperComponent, testID } : {
4
+ wrapperComponent : RenderAPI ;
5
+ testID : string ;
6
+ } ) => Promise < {
7
+ exists : ( ) => boolean ;
8
+ getRootElement : ( ) => ReactTestInstance | null ;
9
+ getTextContent : ( ) => any ;
10
+ isClickable : ( ) => boolean ;
11
+ click : ( ) => void ;
12
+ } > ;
13
+ export default TextDriverFactory ;
You can’t perform that action at this time.
0 commit comments