diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-21 11:55:06 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-21 11:55:06 -0700 |
commit | 019190e91cff53d78f48c6c70e2ea8da23846a94 (patch) | |
tree | 47705ee3c442b2d351a955b39e38a7881c5b78a1 /packages/browser/src/index.test.ts | |
parent | 0ef186ddb89a4c03a95db864260f51c5ccfadb39 (diff) |
Add remaining unit tests for browser
Diffstat (limited to 'packages/browser/src/index.test.ts')
-rw-r--r-- | packages/browser/src/index.test.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/browser/src/index.test.ts b/packages/browser/src/index.test.ts new file mode 100644 index 0000000..0d132ba --- /dev/null +++ b/packages/browser/src/index.test.ts @@ -0,0 +1,13 @@ +import * as index from './index'; + +test('should export method `startAttestation`', () => { + expect(index.startAttestation).toBeDefined(); +}); + +test('should export method `startAssertion`', () => { + expect(index.startAssertion).toBeDefined(); +}); + +test('should export method `supportsWebauthn`', () => { + expect(index.supportsWebauthn).toBeDefined(); +}); |