diff options
Diffstat (limited to 'packages/browser/src/methods/startRegistration.test.ts')
-rw-r--r-- | packages/browser/src/methods/startRegistration.test.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/browser/src/methods/startRegistration.test.ts b/packages/browser/src/methods/startRegistration.test.ts index 9a7196b..2dc11be 100644 --- a/packages/browser/src/methods/startRegistration.test.ts +++ b/packages/browser/src/methods/startRegistration.test.ts @@ -59,6 +59,10 @@ beforeEach(() => { }); mockSupportsWebauthn.mockReturnValue(true); + + // Reset the abort service so we get an accurate call count + // @ts-ignore + webauthnAbortService.controller = undefined; }); afterEach(() => { @@ -215,8 +219,6 @@ test('should return "cable" transport from response', async () => { test('should cancel an existing call when executed again', async () => { const abortSpy = jest.spyOn(AbortController.prototype, 'abort'); - // Reset the abort service so we get an accurate call count - webauthnAbortService.reset(); // Fire off a request and immediately attempt a second one startRegistration(goodOpts1); |