Skip to content

Commit

Permalink
Add skip messages to skipped secret key tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljones15 committed Oct 29, 2024
1 parent 0c7e800 commit e1219e6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/suites/data-model.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,15 @@ export function verificationMethods({suiteName, match}) {
'Multibase section of Controller Documents 1.0.',
async function() {
this.test.link = 'https://w3c.github.io/vc-di-eddsa/#:~:text=The%20secretKeyMultibase%20value%20of%20the%20verification%20method%20MUST%20start%20with%20the%20base%2D58%2Dbtc%20prefix%20(z)%2C%20as%20defined%20in%20the%20Multibase%20section%20of%20Controller%20Documents%201.0.';
this.skip('Testing secret keys is out of scope.');
this.test.cell.skipMessage = 'Testing secret keys is out of scope.';
this.skip();
});
it('Any other encoding MUST NOT be allowed. (secretKeyMultibase)',
async function() {
this.test.link = 'https://w3c.github.io/vc-di-eddsa/#:~:text=of%20Controller%20Documents%201.0.-,Any%20other%20encoding%20MUST%20NOT%20be%20allowed.,-Developers%20are%20advised%20to%20prevent';
this.skip('Testing secret keys is out of scope.');
this.test.cell.skipMessage =
'Testing secret keys is out of scope.';
this.skip();
});
});
}
Expand Down

0 comments on commit e1219e6

Please sign in to comment.