summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/methods
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-07-28 09:26:19 -0700
committerMatthew Miller <matthew@millerti.me>2022-07-28 09:28:43 -0700
commit4bcbdca46dfa066e78d7e4654feda7366e29ce73 (patch)
treef550f7704d466df26b90a8a3ce37834331463d76 /packages/browser/src/methods
parent9111960ea3c91a5be164b4609b24ba45529b4286 (diff)
Update some test imports
Diffstat (limited to 'packages/browser/src/methods')
-rw-r--r--packages/browser/src/methods/startAuthentication.test.ts4
-rw-r--r--packages/browser/src/methods/startRegistration.test.ts4
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/browser/src/methods/startAuthentication.test.ts b/packages/browser/src/methods/startAuthentication.test.ts
index b246cb0..e6ac9c7 100644
--- a/packages/browser/src/methods/startAuthentication.test.ts
+++ b/packages/browser/src/methods/startAuthentication.test.ts
@@ -7,8 +7,8 @@ import {
import { browserSupportsWebauthn } from '../helpers/browserSupportsWebauthn';
import { browserSupportsWebAuthnAutofill } from '../helpers/browserSupportsWebAuthnAutofill';
-import utf8StringToBuffer from '../helpers/utf8StringToBuffer';
-import bufferToBase64URLString from '../helpers/bufferToBase64URLString';
+import { utf8StringToBuffer } from '../helpers/utf8StringToBuffer';
+import { bufferToBase64URLString } from '../helpers/bufferToBase64URLString';
import { WebAuthnError } from '../helpers/structs';
import { generateCustomError } from '../helpers/__jest__/generateCustomError';
import { webauthnAbortService } from '../helpers/webAuthnAbortService';
diff --git a/packages/browser/src/methods/startRegistration.test.ts b/packages/browser/src/methods/startRegistration.test.ts
index ddc2d6a..1ca9e62 100644
--- a/packages/browser/src/methods/startRegistration.test.ts
+++ b/packages/browser/src/methods/startRegistration.test.ts
@@ -6,11 +6,11 @@ import {
} from '@simplewebauthn/typescript-types';
import { generateCustomError } from '../helpers/__jest__/generateCustomError';
import { browserSupportsWebauthn } from '../helpers/browserSupportsWebauthn';
-import bufferToBase64URLString from '../helpers/bufferToBase64URLString';
+import { bufferToBase64URLString } from '../helpers/bufferToBase64URLString';
import { WebAuthnError } from '../helpers/structs';
import { webauthnAbortService } from '../helpers/webAuthnAbortService';
-import utf8StringToBuffer from '../helpers/utf8StringToBuffer';
+import { utf8StringToBuffer } from '../helpers/utf8StringToBuffer';
import { startRegistration } from './startRegistration';