From 10d5f69ea40339938c03c61507a65cae6d1e0da6 Mon Sep 17 00:00:00 2001 From: Andreas Coroiu Date: Mon, 17 Apr 2023 14:06:14 +0200 Subject: [PATCH] [EC-598] chore: tweak unique signature test --- .../src/fido2/services/fido2-authenticator.service.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/common/src/fido2/services/fido2-authenticator.service.spec.ts b/libs/common/src/fido2/services/fido2-authenticator.service.spec.ts index 8ccf26aae7..e392caf74c 100644 --- a/libs/common/src/fido2/services/fido2-authenticator.service.spec.ts +++ b/libs/common/src/fido2/services/fido2-authenticator.service.spec.ts @@ -812,7 +812,7 @@ describe("FidoAuthenticatorService", () => { it("should always generate unique signatures even if the input is the same", async () => { const signatures = new Set(); - for (let i = 0; i < 100; ++i) { + for (let i = 0; i < 10; ++i) { await init(); // Reset inputs const result = await authenticator.getAssertion(params);