-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use endpoints class #60
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tiny tweak. Otherwise looks good!
Co-authored-by: BigBlueHat <[email protected]>
@BigBlueHat good catch can't believe I didn't see that. |
Co-authored-by: Tashi D. Gyeltshen <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code styles don't apply to other abbreviations, fwiw.
README.md
Outdated
- [VC 2.0 Context - https://www.w3.org/ns/credentials/v2](https://www.w3.org/ns/credentials/v2) | ||
- [VC Examples Context - https://www.w3.org/ns/credentials/examples/v2](https://www.w3.org/ns/credentials/examples/v2) | ||
- [Vc 2.0 Context - https://www.w3.org/ns/credentials/v2](https://www.w3.org/ns/credentials/v2) | ||
- [Vc Examples Context - https://www.w3.org/ns/credentials/examples/v2](https://www.w3.org/ns/credentials/examples/v2) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well...this takes the code style into the wrong place. 😃 These are for people, who typically abbreviate Verifiable Credentials as VC...and would read Vc
as a typo. So, the README needs refixing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should make the corrections asked for: eda2a3b
tests/data-generator.js
Outdated
@@ -51,16 +56,16 @@ async function getKeys() { | |||
} | |||
|
|||
/** | |||
* An extremely basic VP prover. This is not final | |||
* An extremely basic Vp creator. This is not final |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, these are human facing abbreviations, so need to stay all caps. Maybe a global search and replace got too greedy? 😀
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* An extremely basic Vp creator. This is not final | |
* An extremely basic VP creator. This is not final |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was actually just being thorough anyways here ya go: eda2a3b
This is clean up: it removes tons of unneeded stuff from the actual test suite and instead creates an Endpoints class that really helps make the suite cleaner and makes it almost more inline with the rest of the suites. It also moves the challenge generation to
data-generator.js
further decluttering the test file.