diff options
Diffstat (limited to 'packages/browser/src/helpers/webAuthnAbortService.test.ts')
-rw-r--r-- | packages/browser/src/helpers/webAuthnAbortService.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/browser/src/helpers/webAuthnAbortService.test.ts b/packages/browser/src/helpers/webAuthnAbortService.test.ts index 98c1ccd..506bb2a 100644 --- a/packages/browser/src/helpers/webAuthnAbortService.test.ts +++ b/packages/browser/src/helpers/webAuthnAbortService.test.ts @@ -13,7 +13,7 @@ test('should call abort() with AbortError on existing controller when creating a // Spy on the existing instance of AbortController const abortSpy = jest.fn(); - // @ts-ignore + // @ts-ignore: Ignore the fact that `controller` is private webauthnAbortService.controller.abort = abortSpy; // Generate a new signal, which should call `abort()` on the existing controller |