Guest User

Untitled

a guest
Dec 13th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Cypress.Commands.add('hasMiddleMarkers', (count) => {
  2. cy.get('.marker-icon-middle').should(($p) => {
  3. expect($p).to.have.length(count);
  4. });
  5. });
  6.  
  7. Cypress.Commands.add('hasVertexMarkers', (count) => {
  8. cy.get('.marker-icon:not(.marker-icon-middle)').should(($p) => {
  9. expect($p).to.have.length(count);
  10. });
  11. });
Add Comment
Please, Sign In to add comment