@@ -19,28 +19,65 @@ type TextMatchOptions = {
1919}
2020
2121interface GetsAndQueries {
22- queryByTestId : BoundFunction < QueryByAttribute >
23- queryAllByTestId : BoundFunction < AllByAttribute >
24- getByTestId : BoundFunction < GetByAttribute >
25- getAllByTestId : BoundFunction < AllByAttribute >
26- queryByText : BoundFunction < QueryByText >
27- queryAllByText : BoundFunction < AllByText >
28- getByText : BoundFunction < GetByText >
29- getAllByText : BoundFunction < AllByText >
3022 queryByPlaceholderText : BoundFunction < QueryByAttribute >
3123 queryAllByPlaceholderText : BoundFunction < AllByAttribute >
3224 getByPlaceholderText : BoundFunction < GetByAttribute >
3325 getAllByPlaceholderText : BoundFunction < AllByAttribute >
34- queryByLabelText : BoundFunction < QueryByAttribute >
35- queryAllByLabelText : BoundFunction < AllByAttribute >
36- getByLabelText : BoundFunction < GetByAttribute >
37- getAllByLabelText : BoundFunction < AllByAttribute >
26+ queryByText : BoundFunction < QueryByText >
27+ queryAllByText : BoundFunction < AllByText >
28+ getByText : BoundFunction < GetByText >
29+ getAllByText : BoundFunction < AllByText >
30+ queryByLabelText : BoundFunction < QueryByText >
31+ queryAllByLabelText : BoundFunction < AllByText >
32+ getByLabelText : BoundFunction < GetByText >
33+ getAllByLabelText : BoundFunction < AllByText >
3834 queryByAltText : BoundFunction < QueryByAttribute >
3935 queryAllByAltText : BoundFunction < AllByAttribute >
4036 getByAltText : BoundFunction < GetByAttribute >
4137 getAllByAltText : BoundFunction < AllByAttribute >
38+ queryByTestId : BoundFunction < QueryByAttribute >
39+ queryAllByTestId : BoundFunction < AllByAttribute >
40+ getByTestId : BoundFunction < GetByAttribute >
41+ getAllByTestId : BoundFunction < AllByAttribute >
42+ queryByTitle : BoundFunction < QueryByAttribute >
43+ queryAllByTitle : BoundFunction < AllByAttribute >
44+ getByTitle : BoundFunction < GetByAttribute >
45+ getAllByTitle : BoundFunction < AllByAttribute >
46+ queryByValue : BoundFunction < QueryByAttribute >
47+ queryAllByValue : BoundFunction < AllByAttribute >
48+ getByValue : BoundFunction < GetByAttribute >
49+ getAllByValue : BoundFunction < AllByAttribute >
4250}
4351
52+ export const queryByPlaceholderText : QueryByAttribute
53+ export const queryAllByPlaceholderText : AllByAttribute
54+ export const getByPlaceholderText : GetByAttribute
55+ export const getAllByPlaceholderText : AllByAttribute
56+ export const queryByText : QueryByText
57+ export const queryAllByText : AllByText
58+ export const getByText : GetByText
59+ export const getAllByText : AllByText
60+ export const queryByLabelText : QueryByText
61+ export const queryAllByLabelText : AllByText
62+ export const getByLabelText : GetByText
63+ export const getAllByLabelText : AllByText
64+ export const queryByAltText : QueryByAttribute
65+ export const queryAllByAltText : AllByAttribute
66+ export const getByAltText : GetByAttribute
67+ export const getAllByAltText : AllByAttribute
68+ export const queryByTestId : QueryByAttribute
69+ export const queryAllByTestId : AllByAttribute
70+ export const getByTestId : GetByAttribute
71+ export const getAllByTestId : AllByAttribute
72+ export const queryByTitle : QueryByAttribute
73+ export const queryAllByTitle : AllByAttribute
74+ export const getByTitle : GetByAttribute
75+ export const getAllByTitle : AllByAttribute
76+ export const queryByValue : QueryByAttribute
77+ export const queryAllByValue : AllByAttribute
78+ export const getByValue : GetByAttribute
79+ export const getAllByValue : AllByAttribute
80+
4481export interface RenderResult extends GetsAndQueries {
4582 container : HTMLDivElement
4683 debug : ( ) => void
0 commit comments