blob: 45a6442e9d6600fbe94d5936326774dc96ea214f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import * as index from "./index.ts";
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();
});
|