Skip to content

Commit 6981612

Browse files
committed
fix(click): remove unused exports
1 parent 6dc8fd4 commit 6981612

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/user-event/click.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async function clickBooleanElement(element, init, clickCount) {
5959
}
6060
}
6161

62-
async function clickElement(element, init, {clickCount} = {}) {
62+
async function clickElement(element, init, {clickCount}) {
6363
const previousElement = getPreviouslyFocusedElement(element)
6464
await fireEvent.pointerDown(element, init)
6565
if (!element.disabled) {
@@ -114,4 +114,4 @@ async function dblClick(element, init) {
114114
}
115115
dblClick = wrapAsync(dblClick)
116116

117-
export {click, dblClick, clickLabel, clickElement}
117+
export {click, dblClick}

0 commit comments

Comments
 (0)