summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.test.ts
diff options
context:
space:
mode:
authorJarrett Helton <jaydhelton@gmail.com>2021-08-21 17:10:21 -0400
committerJarrett Helton <jaydhelton@gmail.com>2021-08-21 17:10:21 -0400
commit100ea77af46317d815b7bf4f695144187414d5b8 (patch)
tree18ae5272bef0d7838b8be11a2b754ee2df6cc76a /packages/browser/src/index.test.ts
parentdf30228f4ebcccba03ddcfb3fc2dbd7102ae020d (diff)
renaming assertion -> authentication
Diffstat (limited to 'packages/browser/src/index.test.ts')
-rw-r--r--packages/browser/src/index.test.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/browser/src/index.test.ts b/packages/browser/src/index.test.ts
index 0d132ba..ffd3b2b 100644
--- a/packages/browser/src/index.test.ts
+++ b/packages/browser/src/index.test.ts
@@ -1,11 +1,11 @@
import * as index from './index';
-test('should export method `startAttestation`', () => {
- expect(index.startAttestation).toBeDefined();
+test('should export method `startRegistration`', () => {
+ expect(index.startRegistration).toBeDefined();
});
-test('should export method `startAssertion`', () => {
- expect(index.startAssertion).toBeDefined();
+test('should export method `startAuthentication`', () => {
+ expect(index.startAuthentication).toBeDefined();
});
test('should export method `supportsWebauthn`', () => {