We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6d7eda commit 00e8a76Copy full SHA for 00e8a76
tests/15-rdfc-di-verify.js
@@ -19,9 +19,13 @@ for(const vcVersion of vectors.vcTypes) {
19
const key = await getMultiKey({keyType: 'P-256'});
20
const {document} = credentials.verify[vcVersion];
21
const {match} = endpoints.filter({
22
+ // create a filter for endpoints by vc version
23
filter: filterVerifiers.bind({
24
vc: {
25
version: vcVersion,
26
+ // this will be the default supported version
27
+ // if an endpoint does not explictly declare
28
+ // which vc version is supported
29
default: '1.1'
30
},
31
tags
@@ -38,6 +42,9 @@ for(const vcVersion of vectors.vcTypes) {
38
42
key,
39
43
testVector: document,
40
44
keyType: 'P-256'
45
+ },
46
+ optionalTests: {
47
+ proofChain: true
41
48
}
49
});
50
0 commit comments