summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.test.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2021-08-25 21:25:57 -0700
committerGitHub <noreply@github.com>2021-08-25 21:25:57 -0700
commitf38363c22f9168653f47f3d112338b80cab93deb (patch)
tree6569142b2ad7d1a8a797a7be439e6377d2b750ea /packages/browser/src/index.test.ts
parent30ecc73b9856747337523f1e367b10d9d96a4a95 (diff)
parentb831fc557aac088c2cace7279decb842bb2214a0 (diff)
Merge pull request #147 from JayHelton/v4/rename-methods-and-types
feat/rename methods and types
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 5e396ca..e82191c 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 `browserSupportsWebauthn`', () => {