-
Notifications
You must be signed in to change notification settings - Fork 51
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
Water @ Hanh Solo Exquisite React Submission #46
base: master
Are you sure you want to change the base?
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.
Nice work Hanh, you have a fully functional Exquisite corpse game. Well done.
You do have some tests failing and I tried to note what could be done to fix them. The biggest thing is some of the props were changed in components, but not in the tests.
@@ -3,13 +3,17 @@ import PropTypes from 'prop-types'; | |||
import './RecentSubmission.css'; | |||
|
|||
const RecentSubmission = (props) => { |
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.
Just to note the tests for this component are passing, so you didn't need to skip them.
@@ -0,0 +1,46 @@ | |||
const FinalPoem = (props) => { |
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'm not sure what this file is for.
@@ -3,23 +3,36 @@ import PropTypes from 'prop-types'; | |||
import './FinalPoem.css'; | |||
|
|||
const FinalPoem = (props) => { |
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.
Just a note that it looks like the tests are failing because you used different props like isRevealed
instead of isSubmitted
. That's why it looks like the tests are failing.
<h3>Player Submission Form for Player #{ }</h3> | ||
|
||
<form className="PlayerSubmissionForm__form" > | ||
<h3>Player Submission Form for Player # { props.index }</h3> |
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 will cause all the tests in Game.test.js
to pass.
<h3>Player Submission Form for Player # { props.index }</h3> | |
<h3>Player Submission Form for Player #{ props.index }</h3> |
Assignment Submission: Exquisite React
Congratulations! You're submitting your assignment. Please reflect on the assignment with these questions.
Reflection