-
-
Notifications
You must be signed in to change notification settings - Fork 628
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
Implement D&D Character Exercise #676
Conversation
Hmm. Looks like I need to update config.json, and also run Make. I'll switch over to my Linux computer and fix this up. I believe I'll be able to do that this evening. |
Hey guys. I just ran Additionally, I can take a guess at most of the values in |
@Tyresius92 Sorry for the confusion.
Generate a new UUID by any tool of your choice. |
you can use |
Hey guys, just wanted to make sure no further action is required from me on this PR? |
test('ability scores only calculated once', () => { | ||
const Drizzt = new Character(); | ||
|
||
expect(Drizzt.strength).toEqual(Drizzt.strength); |
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.
Perhaps we want to test all of them and not just strength
?
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 thought about that, but canonical-data.json only has the check on strength. I can put in the others as well if you'd like though.
@tejasbubane LGTM, what do you think? |
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.
Looks good. 🚀
Sorry about the newline noise with all package.json
files.
Implemented the D&D Character exercise