Skip to content

Commit

Permalink
test fixture fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-fabian committed Jun 3, 2024
1 parent 385a589 commit 420441b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/__tests__/fixtures/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ export async function registerBiometricCredential(user: Omit<BaseUser<TestRoles>
challenge: options.challenge,
credentialId: PENDING as Base64UrlString,
publicKey: PENDING as Base64UrlString,
counter: 0
counter: 0,
expirationDate: undefined
};
const pendingCredential: BiometricCredentials = await testUserRepository.biometricCredentials(user.id).create(credentials);

Expand Down

0 comments on commit 420441b

Please sign in to comment.