Skip to content

Commit

Permalink
Prevent failing on missing vpVerifier info.
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBlueHat committed Nov 5, 2024
1 parent 82c0d71 commit 05a45a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/413.2-envelopes.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe('VP - Enveloped Verifiable Credentials', function() {
const issuerEnvelopeSupport =
endpoints.issuer.settings.tags.includes(
'EnvelopingProof');
const vpVerifierEnvelopeSupport =
const vpVerifierEnvelopeSupport = endpoints.vpVerifier &&
endpoints.vpVerifier.settings.tags.includes(
'EnvelopingProof');

Expand Down Expand Up @@ -111,7 +111,7 @@ describe('VP - Enveloped Verifiable Presentations', function() {
setupMatrix.call(this, match);
for(const [name, implementation] of match) {
const endpoints = new TestEndpoints({implementation, tag});
const vpVerifierEnvelopeSupport =
const vpVerifierEnvelopeSupport = endpoints.vpVerifier &&
endpoints.vpVerifier.settings.tags.includes(
'EnvelopingProof');

Expand Down

0 comments on commit 05a45a4

Please sign in to comment.