diff options
author | Matthew Miller <matthew@millerti.me> | 2021-08-23 21:13:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 21:13:35 -0700 |
commit | 30ecc73b9856747337523f1e367b10d9d96a4a95 (patch) | |
tree | 793c1d8e592d58aacbb6cd8468bd692c6131b8a5 /packages/browser/src/index.test.ts | |
parent | 9a849c3d7eb6c82195ddfcd20f1ad4796a7873ec (diff) | |
parent | fb79f6941a1be0a4c320bb91079e109ee01cd5ad (diff) |
Merge pull request #151 from MasterKale/feat/browser-supports-platform-authr
feat/browser-supports-platform-authr
Diffstat (limited to 'packages/browser/src/index.test.ts')
-rw-r--r-- | packages/browser/src/index.test.ts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/browser/src/index.test.ts b/packages/browser/src/index.test.ts index 0d132ba..5e396ca 100644 --- a/packages/browser/src/index.test.ts +++ b/packages/browser/src/index.test.ts @@ -8,6 +8,10 @@ test('should export method `startAssertion`', () => { expect(index.startAssertion).toBeDefined(); }); -test('should export method `supportsWebauthn`', () => { - expect(index.supportsWebauthn).toBeDefined(); +test('should export method `browserSupportsWebauthn`', () => { + expect(index.browserSupportsWebauthn).toBeDefined(); +}); + +test('should export method `platformAuthenticatorIsAvailable`', () => { + expect(index.browserSupportsWebauthn).toBeDefined(); }); |