diff options
author | Matthew Miller <matthew@millerti.me> | 2021-08-23 20:18:27 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2021-08-23 20:18:27 -0700 |
commit | 808256a244c6e21c2db6b29bfc0cfe24268b460c (patch) | |
tree | 849c619e3bc8e02884739a7c387e937b244fa0eb /packages/browser/src/index.test.ts | |
parent | 09c073098fc2ea506692de614d578c805b74705a (diff) |
Rename supportsWebAuthn (and fix tests)
Diffstat (limited to 'packages/browser/src/index.test.ts')
-rw-r--r-- | packages/browser/src/index.test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/browser/src/index.test.ts b/packages/browser/src/index.test.ts index 0d132ba..49c6ebe 100644 --- a/packages/browser/src/index.test.ts +++ b/packages/browser/src/index.test.ts @@ -8,6 +8,6 @@ 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(); }); |