Skip to content

Commit

Permalink
Cleanup from previous PR
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgain committed Mar 18, 2024
1 parent 11951ff commit 9fda18a
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,8 @@ describe('Credit for this win', () => {
legend: 'Did any other teams help with this win?',
options: ['Yes', 'No'],
})
cy.get(creditForThisWin.radiosBtnYes)
.should('not.be.checked')
.parent()
.should('have.text', 'Yes')
cy.get(creditForThisWin.radiosBtnNo)
.should('not.be.checked')
.parent()
.should('have.text', 'No')
cy.get(creditForThisWin.radiosBtnYes).should('not.be.checked')
cy.get(creditForThisWin.radiosBtnNo).should('not.be.checked')
})

it('should go to the next step when selecting "No" and then "Continue"', () => {
Expand Down

0 comments on commit 9fda18a

Please sign in to comment.