Skip to content

Commit

Permalink
Add 2 tests around baseProof prefix options to implement later.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljones15 committed Jul 10, 2024
1 parent 2d86515 commit c7643bc
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tests/suites/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,19 @@ export function createSuite({
shouldHaveMandatoryPointers({proof});
}
});
it.skip(' If featureOption is set to "anonymous_holder_binding" or ' +
'"pseudonym_hidden_pid", the commitment_with_proof input MUST be ' +
'supplied.', async function() {
this.test.link = 'https://w3c.github.io/vc-di-bbs/#:~:text=If%20featureOption%20is%20set%20to%20%22anonymous_holder_binding%22%20or%20%22pseudonym_hidden_pid%22%2C%20the%20commitment_with_proof%20input%20MUST%20be%20supplied.';
//FIXME implement this test
});
it.skip('If featureOption is set to "anonymous_holder_binding" or ' +
'"pseudonym_hidden_pid", the commitment_with_proof input MUST be ' +
'supplied; if not supplied, an error MUST be raised and SHOULD ' +
'convey an error type of PROOF_GENERATION_ERROR.', async function() {
this.test.link = 'https://w3c.github.io/vc-di-bbs/#:~:text=If%20featureOption%20is%20set%20to%20%22anonymous_holder_binding%22%20or%20%22pseudonym_hidden_pid%22%2C%20the%20commitment_with_proof%20input%20MUST%20be%20supplied%3B%20if%20not%20supplied%2C%20an%20error%20MUST%20be%20raised%20and%20SHOULD%20convey%20an%20error%20type%20of%20PROOF_GENERATION_ERROR.';
//FIXME implement this test
});
});
}
});
Expand Down

0 comments on commit c7643bc

Please sign in to comment.