Skip to content

Commit

Permalink
Adjust test due to implementation change
Browse files Browse the repository at this point in the history
  • Loading branch information
wlsf82 committed Jan 19, 2024
1 parent 43044b6 commit e72c362
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/playground.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ describe('Cypress Playground', () => {
).should('not.be.visible')
})

it('types in an input which "signs" a form, then blurs it to see the result', () => {
cy.get('#type textarea').type('Mad Max').blur()
it("types in an input which 'signs' a form, then asserts it's signed", () => {
cy.get('#type textarea').type('Mad Max')
cy.contains('#type em', 'Mad Max').should('be.visible')
})

Expand Down

0 comments on commit e72c362

Please sign in to comment.