Skip to content

Commit c1aba38

Browse files
authored
Merge branch 'master' into patch-1
2 parents 95a414b + 3a7b5de commit c1aba38

File tree

8 files changed

+2678
-1068
lines changed

8 files changed

+2678
-1068
lines changed

__tests__/react/click.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ describe("userEvent.click", () => {
5959
"mouseover",
6060
"mousemove",
6161
"mousedown",
62+
"focus",
6263
"mouseup",
6364
"click",
6465
"change"
@@ -115,6 +116,7 @@ describe("userEvent.click", () => {
115116
"mouseover",
116117
"mousemove",
117118
"mousedown",
119+
"focus",
118120
"mouseup",
119121
"click",
120122
"change"

__tests__/react/dblclick.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ describe("userEvent.dblClick", () => {
6464
"mouseover",
6565
"mousemove",
6666
"mousedown",
67+
"focus",
6768
"mouseup",
6869
"click",
6970
"change",

__tests__/react/selectoptions.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,8 @@ describe("userEvent.selectOptions", () => {
213213
<option data-testid="val3" value="3">
214214
3
215215
</option>
216-
</select>);
216+
</select>
217+
);
217218

218219
userEvent.selectOptions(getByTestId("element"), "2");
219220

__tests__/vue/click.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ describe("userEvent.click", () => {
7272
"mouseover",
7373
"mousemove",
7474
"mousedown",
75+
"focus",
7576
"mouseup",
7677
"click",
7778
"change"
@@ -140,6 +141,7 @@ describe("userEvent.click", () => {
140141
"mouseover",
141142
"mousemove",
142143
"mousedown",
144+
"focus",
143145
"mouseup",
144146
"click",
145147
"change"

__tests__/vue/dblclick.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ describe("userEvent.dblClick", () => {
7676
"mouseover",
7777
"mousemove",
7878
"mousedown",
79+
"focus",
7980
"mouseup",
8081
"click",
8182
"change",

0 commit comments

Comments
 (0)