From 6e4efecf98a8b01072eec9954264309118cc0a67 Mon Sep 17 00:00:00 2001 From: Daniel Regeci <536331+ovx@users.noreply.github.com> Date: Mon, 2 Sep 2024 19:32:51 -0300 Subject: [PATCH] fix deno test --- tests/deno.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/deno.ts b/tests/deno.ts index 8001a3c..c5f522a 100644 --- a/tests/deno.ts +++ b/tests/deno.ts @@ -42,7 +42,8 @@ Deno.test('verifySolution()', async (t) => { salt: challenge.salt, signature: challenge.signature, }, - hmacKey + hmacKey, + false // don't check expires ); assertEquals(ok, true); });