Skip to content

Commit cd30592

Browse files
committed
Revert "?"
This reverts commit ae9d094.
1 parent ae9d094 commit cd30592

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/gui2/src/composables/__tests__/selection.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@ test.each`
100100
})
101101

102102
class MockPointerEvent extends MouseEvent {
103-
// currentTarget: EventTarget | null
103+
currentTarget: EventTarget | null
104104
pointerId: number
105105
constructor(type: string, options: MouseEventInit & { currentTarget?: Element | undefined }) {
106106
super(type, options)
107-
// this.currentTarget = options.currentTarget ?? null
107+
this.currentTarget = options.currentTarget ?? null
108108
this.pointerId = 4
109109
}
110110
}

0 commit comments

Comments
 (0)