Skip to content

Commit

Permalink
Add back beChecked (fix tests)
Browse files Browse the repository at this point in the history
  • Loading branch information
calebporzio committed Dec 10, 2023
1 parent e2afaf1 commit c1409a8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/cypress/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ export let beSelected = () => el => expect(el).to.be.selected

export let notBeSelected = () => el => expect(el).not.to.be.selected

export let beChecked = () => el => expect(el).to.be.checked

export let notBeChecked = () => el => expect(el).not.to.be.checked

export let beVisible = () => el => expect(el).to.be.visible
Expand Down

0 comments on commit c1409a8

Please sign in to comment.