summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-03-07 20:40:59 -0800
committerMatthew Miller <matthew@millerti.me>2022-03-07 20:40:59 -0800
commitc62c1ce7451cb3876851c802d52254dd9fe6d91c (patch)
treeba4859ee4b70b0ca646d631d2c14d1e1981a386f /packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts
parent031a6abbd4110e6c57f0a3823c46a533d0cfc58b (diff)
Run linting
Diffstat (limited to 'packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts')
-rw-r--r--packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts b/packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts
index e8e53c7..3e0b65b 100644
--- a/packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts
+++ b/packages/browser/src/helpers/platformAuthenticatorIsAvailable.test.ts
@@ -7,7 +7,8 @@ beforeEach(() => {
// @ts-ignore 2741
window.PublicKeyCredential = jest.fn().mockReturnValue(() => {});
- window.PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable = mockIsUVPAA.mockResolvedValue(true);
+ window.PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable =
+ mockIsUVPAA.mockResolvedValue(true);
});
test('should return true when platform authenticator is available', async () => {