diff options
Diffstat (limited to 'packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts')
-rw-r--r-- | packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts b/packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts index 3e0b65b..3024420 100644 --- a/packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts +++ b/packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts @@ -1,4 +1,4 @@ -import { platformAuthenticatorIsAvailable } from './platformAuthenticatorIsAvailable'; +import { platformAuthenticatorIsAvailable } from "./platformAuthenticatorIsAvailable"; const mockIsUVPAA = jest.fn(); @@ -11,13 +11,13 @@ beforeEach(() => { mockIsUVPAA.mockResolvedValue(true); }); -test('should return true when platform authenticator is available', async () => { +test("should return true when platform authenticator is available", async () => { const isAvailable = await platformAuthenticatorIsAvailable(); expect(isAvailable).toEqual(true); }); -test('should return false when platform authenticator is unavailable', async () => { +test("should return false when platform authenticator is unavailable", async () => { mockIsUVPAA.mockResolvedValue(false); const isAvailable = await platformAuthenticatorIsAvailable(); @@ -25,7 +25,7 @@ test('should return false when platform authenticator is unavailable', async () expect(isAvailable).toEqual(false); }); -test('should return false when browser does not support WebAuthn', async () => { +test("should return false when browser does not support WebAuthn", async () => { delete (window as any).PublicKeyCredential; const isAvailable = await platformAuthenticatorIsAvailable(); |