summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src/index.test.ts
blob: b782ee7ba793457d5a13661decf739de66482716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import * as index from './index';

test('should export method `generateRegistrationOptions`', () => {
  expect(index.generateRegistrationOptions).toBeDefined();
});

test('should export method `verifyRegistrationResponse`', () => {
  expect(index.verifyRegistrationResponse).toBeDefined();
});

test('should export method `generateAuthenticationOptions`', () => {
  expect(index.generateAuthenticationOptions).toBeDefined();
});

test('should export method `verifyAuthenticationResponse`', () => {
  expect(index.verifyAuthenticationResponse).toBeDefined();
});