Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
abdulmth committed Sep 15, 2023
1 parent 57648cc commit baa021c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bindings/wasm/tests/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ describe("#JwkStorageDocument", function() {
fragment,
credential,
new JwsSignatureOptions(),
{ testkey: "test-value" }
{ testkey: "test-value" },
);

// Check that the credentialJwt can be decoded and verified
Expand All @@ -148,7 +148,7 @@ describe("#JwkStorageDocument", function() {
new JwtCredentialValidationOptions(),
FailFast.FirstError,
);
assert.deepStrictEqual(decoded.customClaims(), { testkey: "test-value" })
assert.deepStrictEqual(decoded.customClaims(), { testkey: "test-value" });
assert.deepStrictEqual(decoded.credential().toJSON(), credential.toJSON());

// Also check using our custom verifier
Expand Down Expand Up @@ -247,7 +247,7 @@ describe("#JwkStorageDocument", function() {
fragment,
credential,
new JwsSignatureOptions(),
{ "test-key": "test-value" }
{ "test-key": "test-value" },
);

// Check that the credentialJwt can be decoded and verified
Expand Down

0 comments on commit baa021c

Please sign in to comment.