We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae9d094 commit cd30592Copy full SHA for cd30592
app/gui2/src/composables/__tests__/selection.test.ts
@@ -100,11 +100,11 @@ test.each`
100
})
101
102
class MockPointerEvent extends MouseEvent {
103
- // currentTarget: EventTarget | null
+ currentTarget: EventTarget | null
104
pointerId: number
105
constructor(type: string, options: MouseEventInit & { currentTarget?: Element | undefined }) {
106
super(type, options)
107
- // this.currentTarget = options.currentTarget ?? null
+ this.currentTarget = options.currentTarget ?? null
108
this.pointerId = 4
109
}
110
0 commit comments