summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src/index.test.ts
blob: ea02a049633e80669e3751336c8d6635eaf1be50 (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 `generateAttestationOptions`', () => {
  expect(index.generateAttestationOptions).toBeDefined();
});

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

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

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