diff --git a/src/useEventListener/useEventListener.test.ts b/src/useEventListener/useEventListener.test.ts index b93c3dc1..810aedd1 100644 --- a/src/useEventListener/useEventListener.test.ts +++ b/src/useEventListener/useEventListener.test.ts @@ -54,6 +54,7 @@ describe('useEventListener()', () => { expect(windowRemoveEventListenerSpy).toHaveBeenCalledWith( eventName, expect.any(Function), + options, ) }) @@ -78,6 +79,7 @@ describe('useEventListener()', () => { expect(refRemoveEventListenerSpy).toHaveBeenCalledWith( eventName, expect.any(Function), + options, ) }) @@ -102,6 +104,7 @@ describe('useEventListener()', () => { expect(docRemoveEventListenerSpy).toHaveBeenCalledWith( eventName, expect.any(Function), + options, ) })