@@ -65,56 +65,56 @@ export type FindByText = (
65
65
waitForElementOptions ?: WaitForElementOptions ,
66
66
) => Promise < NativeTestInstance > ;
67
67
68
+ export const getByDisplayValue : GetByBoundProp ;
68
69
export const getByHintText : GetByBoundProp ;
69
70
export const getByLabelText : GetByBoundProp ;
70
71
export const getByRole : GetByBoundProp ;
71
- export const getByA11yStates : GetByBoundProp ;
72
- export const getByA11yTraits : GetByBoundProp ;
73
72
export const getByPlaceholderText : GetByBoundProp ;
74
73
export const getByTestId : GetByBoundProp ;
75
74
export const getByText : GetByText ;
75
+ export const getByTitle : GetByBoundProp ;
76
76
77
+ export const getAllByDisplayValue : AllByBoundProp ;
77
78
export const getAllByHintText : AllByBoundProp ;
78
79
export const getAllByLabelText : AllByBoundProp ;
79
80
export const getAllByRole : AllByBoundProp ;
80
- export const getAllByA11yStates : AllByBoundProp ;
81
- export const getAllByA11yTraits : AllByBoundProp ;
82
81
export const getAllByPlaceholderText : AllByBoundProp ;
83
82
export const getAllByTestId : AllByBoundProp ;
84
83
export const getAllByText : AllByText ;
84
+ export const getAllByTitle : AllByBoundProp ;
85
85
86
+ export const queryByDisplayValue : QueryByBoundProp ;
86
87
export const queryByHintText : QueryByBoundProp ;
87
88
export const queryByLabelText : QueryByBoundProp ;
88
89
export const queryByRole : QueryByBoundProp ;
89
- export const queryByA11yStates : QueryByBoundProp ;
90
- export const queryByA11yTraits : QueryByBoundProp ;
91
90
export const queryByPlaceholderText : QueryByBoundProp ;
92
91
export const queryByTestId : QueryByBoundProp ;
93
92
export const queryByText : QueryByText ;
93
+ export const queryByTitle : QueryByBoundProp ;
94
94
95
+ export const queryAllByDisplayValue : AllByBoundProp ;
95
96
export const queryAllByHintText : AllByBoundProp ;
96
97
export const queryAllByLabelText : AllByBoundProp ;
97
98
export const queryAllByRole : AllByBoundProp ;
98
- export const queryAllByA11yStates : AllByBoundProp ;
99
- export const queryAllByA11yTraits : AllByBoundProp ;
100
99
export const queryAllByPlaceholderText : AllByBoundProp ;
101
100
export const queryAllByTestId : AllByBoundProp ;
102
101
export const queryAllByText : AllByText ;
102
+ export const queryAllByTitle : AllByBoundProp ;
103
103
104
+ export const findByDisplayValue : FindByBoundProp ;
104
105
export const findByHintText : FindByBoundProp ;
105
106
export const findByLabelText : FindByBoundProp ;
106
107
export const findByRole : FindByBoundProp ;
107
- export const findByA11yStates : FindByBoundProp ;
108
- export const findByA11yTraits : FindByBoundProp ;
109
108
export const findByPlaceholderText : FindByBoundProp ;
110
109
export const findByTestId : FindByBoundProp ;
111
110
export const findByText : FindByText ;
111
+ export const findByTitle : FindByBoundProp ;
112
112
113
+ export const findAllByDisplayValue : FindAllByBoundProp ;
113
114
export const findAllByHintText : FindAllByBoundProp ;
114
115
export const findAllByLabelText : FindAllByBoundProp ;
115
116
export const findAllByRole : FindAllByBoundProp ;
116
- export const findAllByA11yStates : FindAllByBoundProp ;
117
- export const findAllByA11yTraits : FindAllByBoundProp ;
118
117
export const findAllByPlaceholderText : FindAllByBoundProp ;
119
118
export const findAllByTestId : FindAllByBoundProp ;
120
119
export const findAllByText : FindAllByText ;
120
+ export const findAllByTitle : FindAllByBoundProp ;
0 commit comments