diff options
author | Matthew Miller <matthew@millerti.me> | 2022-08-16 22:34:15 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-08-16 22:34:15 -0700 |
commit | 8432ac818889a7b36bbfb4c620365d0ea3189b0f (patch) | |
tree | 9d0e672bd72628a8edc8696b97d4a0aa789aa872 /packages/browser/src/index.test.ts | |
parent | 2de1972b2461837a83a40a6bbb6cb51719002d3b (diff) |
Capitalize the "A" in "Webauthn"
Diffstat (limited to 'packages/browser/src/index.test.ts')
-rw-r--r-- | packages/browser/src/index.test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/browser/src/index.test.ts b/packages/browser/src/index.test.ts index e82191c..945ea1a 100644 --- a/packages/browser/src/index.test.ts +++ b/packages/browser/src/index.test.ts @@ -8,10 +8,10 @@ test('should export method `startAuthentication`', () => { expect(index.startAuthentication).toBeDefined(); }); -test('should export method `browserSupportsWebauthn`', () => { - expect(index.browserSupportsWebauthn).toBeDefined(); +test('should export method `browserSupportsWebAuthn`', () => { + expect(index.browserSupportsWebAuthn).toBeDefined(); }); test('should export method `platformAuthenticatorIsAvailable`', () => { - expect(index.browserSupportsWebauthn).toBeDefined(); + expect(index.browserSupportsWebAuthn).toBeDefined(); }); |