Skip to content

Commit 7778b35

Browse files
authored
Make issuers optional. (#89)
Some implementers only have verifiers. Now the tests in this repo knows that.
1 parent e30054f commit 7778b35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/implementations.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe('Loading implementations', () => {
2222
id && id.startsWith('did:key');
2323

2424
describe(implementation.settings.name, () => {
25-
issuers.filter(isDidKeyFilter)
25+
issuers?.filter(isDidKeyFilter)
2626
.map(({settings: {id}}, index) => {
2727
describe(`issuer[${index}].id`, () => {
2828
it('should not specify a fragment', () => {

0 commit comments

Comments
 (0)