@@ -19,28 +19,65 @@ type TextMatchOptions = {
19
19
}
20
20
21
21
interface 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 >
30
22
queryByPlaceholderText : BoundFunction < QueryByAttribute >
31
23
queryAllByPlaceholderText : BoundFunction < AllByAttribute >
32
24
getByPlaceholderText : BoundFunction < GetByAttribute >
33
25
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 >
38
34
queryByAltText : BoundFunction < QueryByAttribute >
39
35
queryAllByAltText : BoundFunction < AllByAttribute >
40
36
getByAltText : BoundFunction < GetByAttribute >
41
37
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 >
42
50
}
43
51
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
+
44
81
export interface RenderResult extends GetsAndQueries {
45
82
container : HTMLDivElement
46
83
debug : ( ) => void
0 commit comments