File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,9 @@ import {expect} from 'chai';
1414import { sdVerifySetup } from '../setup.js' ;
1515
1616export function sd2023Algorithms ( {
17- credentials,
17+ credential,
18+ mandatoryPointers,
19+ selectivePointers,
1820 verifiers,
1921 issuers,
2022 keyTypes,
@@ -33,12 +35,14 @@ export function sd2023Algorithms({
3335 fixtures = await setup ( {
3436 suite : suiteName ,
3537 keyTypes,
36- credentials
38+ credential,
39+ mandatoryPointers,
40+ selectivePointers
3741 } ) ;
3842 } ) ;
3943 for ( const [ name , { endpoints} ] of verifiers ) {
4044 const [ verifier ] = endpoints ;
41- const [ issuer ] = issuers . get ( name ) ?. endpoints ;
45+ const [ issuer ] = ( issuers . get ( name ) ?. endpoints || [ ] ) ;
4246 for ( const keyType of keyTypes ) {
4347 this . implemented . push ( `${ name } : ${ keyType } ` ) ;
4448 describe ( `${ name } : ${ keyType } ` , function ( ) {
You can’t perform that action at this time.
0 commit comments