Skip to content

Commit

Permalink
Update cborld and vc versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlongley committed Nov 30, 2023
1 parent ee1cab6 commit 1b3f476
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"lib/**/*.js"
],
"dependencies": {
"@digitalbazaar/cborld": "^5.0.0",
"@digitalbazaar/cborld": "^6.0.1",
"@nuintun/qrcode": "^3.3.0",
"base32-decode": "^1.0.0",
"base32-encode": "^2.0.0"
Expand All @@ -32,7 +32,7 @@
"@digitalbazaar/did-io": "^2.0.0",
"@digitalbazaar/did-method-key": "^3.0.0",
"@digitalbazaar/ed25519-signature-2020": "^4.0.1",
"@digitalbazaar/vc": "^3.0.0",
"@digitalbazaar/vc": "^6.2.0",
"age-verification-context": "^5.0.0",
"c8": "^7.11.3",
"chai": "^4.3.6",
Expand Down
9 changes: 6 additions & 3 deletions test/vpqr.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ describe('vpqr', () => {
presentation: vp,
documentLoader,
suite,
unsignedPresentation: true
unsignedPresentation: true,
now: Date.parse(vp?.verifiableCredential[0]?.issuanceDate)
});
expect(result.verified).to.be.true;
});
Expand Down Expand Up @@ -98,7 +99,8 @@ describe('util', () => {
presentation: jsonldDocument,
documentLoader,
suite,
unsignedPresentation: true
unsignedPresentation: true,
now: Date.parse(jsonldDocument?.verifiableCredential[0]?.issuanceDate)
});
expect(result.verified).to.be.true;
});
Expand All @@ -122,7 +124,8 @@ describe('util', () => {
presentation: jsonldDocument,
documentLoader,
suite,
unsignedPresentation: true
unsignedPresentation: true,
now: Date.parse(jsonldDocument?.verifiableCredential[0]?.issuanceDate)
});
expect(result.verified).to.be.true;
});
Expand Down

0 comments on commit 1b3f476

Please sign in to comment.