1
- import React from ' react'
2
- import { render , cleanup } from ' react-testing-library'
3
- import ' jest-dom/extend-expect'
4
- import userEvent from ' ../src'
1
+ import React from " react" ;
2
+ import { render , cleanup } from " react-testing-library" ;
3
+ import " jest-dom/extend-expect" ;
4
+ import userEvent from " ../src" ;
5
5
6
- afterEach ( cleanup )
6
+ afterEach ( cleanup ) ;
7
7
8
- describe ( ' fireEvent.click' , ( ) => {
9
- it . each ( [ ' input' , ' textarea' ] ) (
10
- ' should fire the correct events for <%s>' ,
8
+ describe ( " fireEvent.click" , ( ) => {
9
+ it . each ( [ " input" , " textarea" ] ) (
10
+ " should fire the correct events for <%s>" ,
11
11
type => {
12
- const onMouseOver = jest . fn ( )
13
- const onMouseMove = jest . fn ( )
14
- const onMouseDown = jest . fn ( )
15
- const onFocus = jest . fn ( )
16
- const onMouseUp = jest . fn ( )
17
- const onClick = jest . fn ( )
12
+ const onMouseOver = jest . fn ( ) ;
13
+ const onMouseMove = jest . fn ( ) ;
14
+ const onMouseDown = jest . fn ( ) ;
15
+ const onFocus = jest . fn ( ) ;
16
+ const onMouseUp = jest . fn ( ) ;
17
+ const onClick = jest . fn ( ) ;
18
18
const { getByTestId } = render (
19
19
React . createElement ( type , {
20
- ' data-testid' : ' element' ,
20
+ " data-testid" : " element" ,
21
21
onMouseOver : onMouseOver ,
22
22
onMouseMove : onMouseMove ,
23
23
onMouseDown : onMouseDown ,
24
24
onFocus : onFocus ,
25
25
onMouseUp : onMouseUp ,
26
- onClick : onClick ,
26
+ onClick : onClick
27
27
} )
28
- )
29
-
30
- expect ( onMouseOver ) . not . toHaveBeenCalled ( )
31
- expect ( onMouseMove ) . not . toHaveBeenCalled ( )
32
- expect ( onMouseDown ) . not . toHaveBeenCalled ( )
33
- expect ( onFocus ) . not . toHaveBeenCalled ( )
34
- expect ( onMouseUp ) . not . toHaveBeenCalled ( )
35
- expect ( onClick ) . not . toHaveBeenCalled ( )
36
-
37
- userEvent . click ( getByTestId ( ' element' ) )
38
-
39
- expect ( onMouseOver ) . toHaveBeenCalledTimes ( 1 )
40
- expect ( onMouseMove ) . toHaveBeenCalledTimes ( 1 )
41
- expect ( onMouseDown ) . toHaveBeenCalledTimes ( 1 )
42
- expect ( onFocus ) . toHaveBeenCalledTimes ( 1 )
43
- expect ( onMouseUp ) . toHaveBeenCalledTimes ( 1 )
44
- expect ( onClick ) . toHaveBeenCalledTimes ( 1 )
28
+ ) ;
29
+
30
+ expect ( onMouseOver ) . not . toHaveBeenCalled ( ) ;
31
+ expect ( onMouseMove ) . not . toHaveBeenCalled ( ) ;
32
+ expect ( onMouseDown ) . not . toHaveBeenCalled ( ) ;
33
+ expect ( onFocus ) . not . toHaveBeenCalled ( ) ;
34
+ expect ( onMouseUp ) . not . toHaveBeenCalled ( ) ;
35
+ expect ( onClick ) . not . toHaveBeenCalled ( ) ;
36
+
37
+ userEvent . click ( getByTestId ( " element" ) ) ;
38
+
39
+ expect ( onMouseOver ) . toHaveBeenCalledTimes ( 1 ) ;
40
+ expect ( onMouseMove ) . toHaveBeenCalledTimes ( 1 ) ;
41
+ expect ( onMouseDown ) . toHaveBeenCalledTimes ( 1 ) ;
42
+ expect ( onFocus ) . toHaveBeenCalledTimes ( 1 ) ;
43
+ expect ( onMouseUp ) . toHaveBeenCalledTimes ( 1 ) ;
44
+ expect ( onClick ) . toHaveBeenCalledTimes ( 1 ) ;
45
45
}
46
- )
47
-
48
- it ( 'should fire the correct events for <div>' , ( ) => {
49
- const onMouseOver = jest . fn ( )
50
- const onMouseMove = jest . fn ( )
51
- const onMouseDown = jest . fn ( )
52
- const onFocus = jest . fn ( )
53
- const onMouseUp = jest . fn ( )
54
- const onClick = jest . fn ( )
46
+ ) ;
47
+
48
+ it ( 'should fire the correct events for <input type="checkbox">' , ( ) => {
49
+ const onMouseOver = jest . fn ( ) ;
50
+ const onMouseMove = jest . fn ( ) ;
51
+ const onMouseDown = jest . fn ( ) ;
52
+ const onFocus = jest . fn ( ) ;
53
+ const onMouseUp = jest . fn ( ) ;
54
+ const onClick = jest . fn ( ) ;
55
+ const onChange = jest . fn ( ) ;
56
+ const { getByTestId } = render (
57
+ < input
58
+ data-testid = "element"
59
+ type = "checkbox"
60
+ onMouseOver = { onMouseOver }
61
+ onMouseMove = { onMouseMove }
62
+ onMouseDown = { onMouseDown }
63
+ onFocus = { onFocus }
64
+ onMouseUp = { onMouseUp }
65
+ onClick = { onClick }
66
+ onChange = { onChange }
67
+ />
68
+ ) ;
69
+
70
+ expect ( onMouseOver ) . not . toHaveBeenCalled ( ) ;
71
+ expect ( onMouseMove ) . not . toHaveBeenCalled ( ) ;
72
+ expect ( onMouseDown ) . not . toHaveBeenCalled ( ) ;
73
+ expect ( onFocus ) . not . toHaveBeenCalled ( ) ;
74
+ expect ( onMouseUp ) . not . toHaveBeenCalled ( ) ;
75
+ expect ( onClick ) . not . toHaveBeenCalled ( ) ;
76
+ expect ( onChange ) . not . toHaveBeenCalled ( ) ;
77
+
78
+ userEvent . click ( getByTestId ( "element" ) ) ;
79
+
80
+ expect ( onMouseOver ) . toHaveBeenCalledTimes ( 1 ) ;
81
+ expect ( onMouseMove ) . toHaveBeenCalledTimes ( 1 ) ;
82
+ expect ( onMouseDown ) . toHaveBeenCalledTimes ( 1 ) ;
83
+ expect ( onFocus ) . not . toHaveBeenCalledTimes ( 1 ) ;
84
+ expect ( onMouseUp ) . toHaveBeenCalledTimes ( 1 ) ;
85
+ expect ( onClick ) . toHaveBeenCalledTimes ( 1 ) ;
86
+ expect ( onChange ) . toHaveBeenCalledTimes ( 1 ) ;
87
+ expect ( getByTestId ( "element" ) ) . toHaveProperty ( "checked" , true ) ;
88
+ } ) ;
89
+
90
+ it ( "should fire the correct events for <div>" , ( ) => {
91
+ const onMouseOver = jest . fn ( ) ;
92
+ const onMouseMove = jest . fn ( ) ;
93
+ const onMouseDown = jest . fn ( ) ;
94
+ const onFocus = jest . fn ( ) ;
95
+ const onMouseUp = jest . fn ( ) ;
96
+ const onClick = jest . fn ( ) ;
55
97
const { getByTestId } = render (
56
98
< div
57
99
data-testid = "div"
@@ -62,93 +104,93 @@ describe('fireEvent.click', () => {
62
104
onMouseUp = { onMouseUp }
63
105
onClick = { onClick }
64
106
/>
65
- )
66
-
67
- expect ( onMouseOver ) . not . toHaveBeenCalled ( )
68
- expect ( onMouseMove ) . not . toHaveBeenCalled ( )
69
- expect ( onMouseDown ) . not . toHaveBeenCalled ( )
70
- expect ( onFocus ) . not . toHaveBeenCalled ( )
71
- expect ( onMouseUp ) . not . toHaveBeenCalled ( )
72
- expect ( onClick ) . not . toHaveBeenCalled ( )
73
-
74
- userEvent . click ( getByTestId ( ' div' ) )
75
-
76
- expect ( onMouseOver ) . toHaveBeenCalledTimes ( 1 )
77
- expect ( onMouseMove ) . toHaveBeenCalledTimes ( 1 )
78
- expect ( onMouseDown ) . toHaveBeenCalledTimes ( 1 )
79
- expect ( onFocus ) . not . toHaveBeenCalled ( )
80
- expect ( onMouseUp ) . toHaveBeenCalledTimes ( 1 )
81
- expect ( onClick ) . toHaveBeenCalledTimes ( 1 )
82
- } )
83
-
84
- it ( ' toggles the focus' , ( ) => {
107
+ ) ;
108
+
109
+ expect ( onMouseOver ) . not . toHaveBeenCalled ( ) ;
110
+ expect ( onMouseMove ) . not . toHaveBeenCalled ( ) ;
111
+ expect ( onMouseDown ) . not . toHaveBeenCalled ( ) ;
112
+ expect ( onFocus ) . not . toHaveBeenCalled ( ) ;
113
+ expect ( onMouseUp ) . not . toHaveBeenCalled ( ) ;
114
+ expect ( onClick ) . not . toHaveBeenCalled ( ) ;
115
+
116
+ userEvent . click ( getByTestId ( " div" ) ) ;
117
+
118
+ expect ( onMouseOver ) . toHaveBeenCalledTimes ( 1 ) ;
119
+ expect ( onMouseMove ) . toHaveBeenCalledTimes ( 1 ) ;
120
+ expect ( onMouseDown ) . toHaveBeenCalledTimes ( 1 ) ;
121
+ expect ( onFocus ) . not . toHaveBeenCalled ( ) ;
122
+ expect ( onMouseUp ) . toHaveBeenCalledTimes ( 1 ) ;
123
+ expect ( onClick ) . toHaveBeenCalledTimes ( 1 ) ;
124
+ } ) ;
125
+
126
+ it ( " toggles the focus" , ( ) => {
85
127
const { getByTestId } = render (
86
128
< React . Fragment >
87
129
< input data-testid = "A" />
88
130
< input data-testid = "B" />
89
131
</ React . Fragment >
90
- )
132
+ ) ;
91
133
92
- const a = getByTestId ( 'A' )
93
- const b = getByTestId ( 'B' )
134
+ const a = getByTestId ( "A" ) ;
135
+ const b = getByTestId ( "B" ) ;
94
136
95
- expect ( a ) . not . toHaveFocus ( )
96
- expect ( b ) . not . toHaveFocus ( )
137
+ expect ( a ) . not . toHaveFocus ( ) ;
138
+ expect ( b ) . not . toHaveFocus ( ) ;
97
139
98
- userEvent . click ( a )
99
- expect ( a ) . toHaveFocus ( )
100
- expect ( b ) . not . toHaveFocus ( )
140
+ userEvent . click ( a ) ;
141
+ expect ( a ) . toHaveFocus ( ) ;
142
+ expect ( b ) . not . toHaveFocus ( ) ;
101
143
102
- userEvent . click ( b )
103
- expect ( a ) . not . toHaveFocus ( )
104
- expect ( a ) . not . toHaveFocus ( )
105
- } )
144
+ userEvent . click ( b ) ;
145
+ expect ( a ) . not . toHaveFocus ( ) ;
146
+ expect ( a ) . not . toHaveFocus ( ) ;
147
+ } ) ;
106
148
107
- it . each ( [ ' input' , ' textarea' ] ) (
108
- ' gives focus to <%s> when clicking a <label> with htmlFor' ,
149
+ it . each ( [ " input" , " textarea" ] ) (
150
+ " gives focus to <%s> when clicking a <label> with htmlFor" ,
109
151
type => {
110
152
const { getByTestId } = render (
111
153
< React . Fragment >
112
154
< label htmlFor = "input" data-testid = "label" >
113
155
Label
114
156
</ label >
115
- { React . createElement ( type , { id : ' input' , ' data-testid' : ' input' } ) }
157
+ { React . createElement ( type , { id : " input" , " data-testid" : " input" } ) }
116
158
</ React . Fragment >
117
- )
118
- userEvent . click ( getByTestId ( ' label' ) )
119
- expect ( getByTestId ( ' input' ) ) . toHaveFocus ( )
159
+ ) ;
160
+ userEvent . click ( getByTestId ( " label" ) ) ;
161
+ expect ( getByTestId ( " input" ) ) . toHaveFocus ( ) ;
120
162
}
121
- )
163
+ ) ;
122
164
123
- it . each ( [ ' input' , ' textarea' ] ) (
124
- ' gives focus to <%s> when clicking a <label> without htmlFor' ,
165
+ it . each ( [ " input" , " textarea" ] ) (
166
+ " gives focus to <%s> when clicking a <label> without htmlFor" ,
125
167
type => {
126
168
const { getByTestId } = render (
127
169
< React . Fragment >
128
170
< label data-testid = "label" >
129
171
Label
130
- { React . createElement ( type , { ' data-testid' : ' input' } ) }
172
+ { React . createElement ( type , { " data-testid" : " input" } ) }
131
173
</ label >
132
174
</ React . Fragment >
133
- )
134
- userEvent . click ( getByTestId ( ' label' ) )
135
- expect ( getByTestId ( ' input' ) ) . toHaveFocus ( )
175
+ ) ;
176
+ userEvent . click ( getByTestId ( " label" ) ) ;
177
+ expect ( getByTestId ( " input" ) ) . toHaveFocus ( ) ;
136
178
}
137
- )
179
+ ) ;
138
180
139
- it . each ( [ ' input' , ' textarea' ] ) (
140
- ' gives focus to <%s> when clicking on an element contained within a <label>' ,
181
+ it . each ( [ " input" , " textarea" ] ) (
182
+ " gives focus to <%s> when clicking on an element contained within a <label>" ,
141
183
type => {
142
184
const { getByText, getByTestId } = render (
143
185
< React . Fragment >
144
186
< label htmlFor = "input" data-testid = "label" >
145
187
< span > Label</ span >
146
188
</ label >
147
- { React . createElement ( type , { id : ' input' , ' data-testid' : ' input' } ) }
189
+ { React . createElement ( type , { id : " input" , " data-testid" : " input" } ) }
148
190
</ React . Fragment >
149
- )
150
- userEvent . click ( getByText ( ' Label' ) )
151
- expect ( getByTestId ( ' input' ) ) . toHaveFocus ( )
191
+ ) ;
192
+ userEvent . click ( getByText ( " Label" ) ) ;
193
+ expect ( getByTestId ( " input" ) ) . toHaveFocus ( ) ;
152
194
}
153
- )
154
- } )
195
+ ) ;
196
+ } ) ;
0 commit comments