File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ export function ecdsaRdfc2019Algorithms({
9595 return describe ( `${ suiteName } - Algorithms - VC ${ vcVersion } ` , function ( ) {
9696 this . matrix = true ;
9797 this . report = true ;
98- this . implemented = [ ... verifiers ] ;
98+ this . implemented = [ ] ;
9999 this . rowLabel = 'Test Name' ;
100100 this . columnLabel = 'Implementation' ;
101101 let credentials = new Map ( ) ;
@@ -110,6 +110,7 @@ export function ecdsaRdfc2019Algorithms({
110110 } ) ;
111111 for ( const [ name , { endpoints} ] of verifiers ) {
112112 const [ verifier ] = endpoints ;
113+ this . implemented . push ( `${ name } : ${ keyType } ` ) ;
113114 describe ( `${ name } : ${ keyType } ` , function ( ) {
114115 beforeEach ( function ( ) {
115116 this . currentTest . cell = {
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export function conformanceSuite({
4141 for ( const [ name , { endpoints} ] of verifiers ) {
4242 const [ verifier ] = endpoints ;
4343 for ( const keyType of keyTypes ) {
44- // add implementer name and keyType to test report
44+ // add implementer name and keyType to test report
4545 this . implemented . push ( `${ name } : ${ keyType } ` ) ;
4646 describe ( `${ name } : ${ keyType } ` , function ( ) {
4747 beforeEach ( function ( ) {
You can’t perform that action at this time.
0 commit comments