bahmutov / cypress-if

Easy conditional if-else logic for your Cypress tests when there is no other way
https://cypress.tips/courses/cypress-plugins
99 stars 12 forks source link

Add assertions to handle undefined and null values better #38

Open bahmutov opened 2 years ago

bahmutov commented 2 years ago
cy.wrap(undefined)
  .if('undefined')
  ...

cy.wrap(null)
  .if('null')
  ...

cy.wrap(undefined)
  .if('defined')
  // else path