From 420441be9e7a3f53303993073d5675d92f1ec8b6 Mon Sep 17 00:00:00 2001 From: tim-fabian Date: Mon, 3 Jun 2024 18:14:16 +0200 Subject: [PATCH] test fixture fix --- src/__tests__/fixtures/helpers.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/__tests__/fixtures/helpers.ts b/src/__tests__/fixtures/helpers.ts index 15bd6b8..942f6c9 100644 --- a/src/__tests__/fixtures/helpers.ts +++ b/src/__tests__/fixtures/helpers.ts @@ -86,7 +86,8 @@ export async function registerBiometricCredential(user: Omit 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);