diff options
author | Matthew Miller <matthew@millerti.me> | 2022-07-28 09:26:19 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-07-28 09:28:43 -0700 |
commit | 4bcbdca46dfa066e78d7e4654feda7366e29ce73 (patch) | |
tree | f550f7704d466df26b90a8a3ce37834331463d76 /packages/server/src/authentication/verifyAuthenticationResponse.test.ts | |
parent | 9111960ea3c91a5be164b4609b24ba45529b4286 (diff) |
Update some test imports
Diffstat (limited to 'packages/server/src/authentication/verifyAuthenticationResponse.test.ts')
-rw-r--r-- | packages/server/src/authentication/verifyAuthenticationResponse.test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/server/src/authentication/verifyAuthenticationResponse.test.ts b/packages/server/src/authentication/verifyAuthenticationResponse.test.ts index dbaa946..4202155 100644 --- a/packages/server/src/authentication/verifyAuthenticationResponse.test.ts +++ b/packages/server/src/authentication/verifyAuthenticationResponse.test.ts @@ -1,9 +1,9 @@ import base64url from 'base64url'; -import verifyAuthenticationResponse from './verifyAuthenticationResponse'; +import { verifyAuthenticationResponse } from './verifyAuthenticationResponse'; import * as decodeClientDataJSON from '../helpers/decodeClientDataJSON'; import * as parseAuthenticatorData from '../helpers/parseAuthenticatorData'; -import toHash from '../helpers/toHash'; +import { toHash } from '../helpers/toHash'; import { AuthenticatorDevice, AuthenticationCredentialJSON, |