Skip to content

Commit

Permalink
Make issuers optional. (#89)
Browse files Browse the repository at this point in the history
Some implementers only have verifiers. Now the tests in this repo knows that.
  • Loading branch information
BigBlueHat authored Dec 6, 2024
1 parent e30054f commit 7778b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/implementations.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('Loading implementations', () => {
id && id.startsWith('did:key');

describe(implementation.settings.name, () => {
issuers.filter(isDidKeyFilter)
issuers?.filter(isDidKeyFilter)
.map(({settings: {id}}, index) => {
describe(`issuer[${index}].id`, () => {
it('should not specify a fragment', () => {
Expand Down

0 comments on commit 7778b35

Please sign in to comment.