blob: 945ea1a5eca5313e4c7088124391083f2d0b608a (
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 `startRegistration`', () => {
expect(index.startRegistration).toBeDefined();
});
test('should export method `startAuthentication`', () => {
expect(index.startAuthentication).toBeDefined();
});
test('should export method `browserSupportsWebAuthn`', () => {
expect(index.browserSupportsWebAuthn).toBeDefined();
});
test('should export method `platformAuthenticatorIsAvailable`', () => {
expect(index.browserSupportsWebAuthn).toBeDefined();
});
|