Skip to content
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

Rick Mansfield's Pull/push Trail for U3.3 M1 Testing React #65

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
added data-testid="seasons" to Show.js
Rick committed Aug 15, 2021
commit 13a24facc139572a319139b7f425acfdba3e49ca
2 changes: 1 addition & 1 deletion src/components/Show.js
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ const Show = (props) => {
<p>{show.summary}</p>

<label htmlFor="seasons">Select A Season</label><br/>
<select onChange={handleSelect} name="seasons" id="seasons">
<select onChange={handleSelect} name="seasons" id="seasons" data-testid="seasons">
<option value="none"></option>
{
show.seasons.map(season=>{