summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.test.ts
blob: 49c6ebe2fa0658de25c828eef750ada84f6cb895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 `browserSupportsWebauthn`', () => {
  expect(index.browserSupportsWebauthn).toBeDefined();
});