From a944eb7f6b0791a4f86c12069a03b46759d8b072 Mon Sep 17 00:00:00 2001 From: Abdulrahim Al Methiab Date: Wed, 27 Sep 2023 17:31:08 +0200 Subject: [PATCH] fmt --- bindings/wasm/tests/storage.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bindings/wasm/tests/storage.ts b/bindings/wasm/tests/storage.ts index 25bb19e0bb..a526a80e7d 100644 --- a/bindings/wasm/tests/storage.ts +++ b/bindings/wasm/tests/storage.ts @@ -91,14 +91,14 @@ describe("#JwkStorageDocument", function() { let testString = "test"; let options = new JwsSignatureOptions({ customHeaderParameters: { - testKey: "testValue" - } + testKey: "testValue", + }, }); const jws = await doc.createJws( storage, fragment, testString, - options + options, ); // Verify the signature and obtain a decoded token. @@ -106,7 +106,7 @@ describe("#JwkStorageDocument", function() { assert.deepStrictEqual(testString, token.claims()); // Verify custom header parameters. - assert.deepStrictEqual(token.protectedHeader().custom(), { testKey: "testValue" }) + assert.deepStrictEqual(token.protectedHeader().custom(), { testKey: "testValue" }); // Check that we can also verify it using a custom verifier let customVerifier = new CustomVerifier();