From dfb32f4891f6c955c25b2f305fa702cdaf8c5a5e Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Fri, 18 Aug 2023 11:11:56 -0700 Subject: Format browser --- .../browser/src/helpers/platformAuthenticatorIsAvailable.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts') 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(); -- cgit v1.2.3