Skip to content

Commit

Permalink
Add missing links to data-model suite.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljones15 committed Oct 29, 2024
1 parent e46a9b0 commit 71fc73e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/suites/data-model.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function verificationMethods({suiteName, match}) {
'start with the base-58-btc prefix (z), as defined in the ' +
'Multibase section of Controller Documents 1.0.',
async function() {
this.test.link = '';
this.test.link = 'https://w3c.github.io/vc-di-eddsa/#:~:text=The%20publicKeyMultibase%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.';
verificationMethodDocuments.should.not.eql([],
'Expected at least one "verificationMethodDocument".');
for(const verificationMethodDocument of
Expand All @@ -61,7 +61,7 @@ export function verificationMethods({suiteName, match}) {
});
it('Any other encoding MUST NOT be allowed.',
async function() {
this.test.link = '';
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%20not';
verificationMethodDocuments.should.not.eql([],
'Expected at least one "verificationMethodDocument".');
for(const verificationMethodDocument of
Expand All @@ -82,12 +82,12 @@ export function verificationMethods({suiteName, match}) {
'MUST start with the base-58-btc prefix (z), as defined in the ' +
'Multibase section of Controller Documents 1.0.',
async function() {
this.test.link = '';
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.');
});
it('Any other encoding MUST NOT be allowed.',
async function() {
this.test.link = '';
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.');
});
});
Expand Down

0 comments on commit 71fc73e

Please sign in to comment.