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({
95
95
return describe ( `${ suiteName } - Algorithms - VC ${ vcVersion } ` , function ( ) {
96
96
this . matrix = true ;
97
97
this . report = true ;
98
- this . implemented = [ ... verifiers ] ;
98
+ this . implemented = [ ] ;
99
99
this . rowLabel = 'Test Name' ;
100
100
this . columnLabel = 'Implementation' ;
101
101
let credentials = new Map ( ) ;
@@ -110,6 +110,7 @@ export function ecdsaRdfc2019Algorithms({
110
110
} ) ;
111
111
for ( const [ name , { endpoints} ] of verifiers ) {
112
112
const [ verifier ] = endpoints ;
113
+ this . implemented . push ( `${ name } : ${ keyType } ` ) ;
113
114
describe ( `${ name } : ${ keyType } ` , function ( ) {
114
115
beforeEach ( function ( ) {
115
116
this . currentTest . cell = {
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export function conformanceSuite({
41
41
for ( const [ name , { endpoints} ] of verifiers ) {
42
42
const [ verifier ] = endpoints ;
43
43
for ( const keyType of keyTypes ) {
44
- // add implementer name and keyType to test report
44
+ // add implementer name and keyType to test report
45
45
this . implemented . push ( `${ name } : ${ keyType } ` ) ;
46
46
describe ( `${ name } : ${ keyType } ` , function ( ) {
47
47
beforeEach ( function ( ) {
You can’t perform that action at this time.
0 commit comments