Cypress

[docs.cypress.io] cypress.env.json

[docs.cypress.io] guides -- configuration

{
  "host": "http://localhost",
  "video": false,
  "watchForFileChanges": false,
  "responseTimeout": 12000
}

Snippets

cy.pause()

cy.get('button').debug().click()

cy.contains('.todo-list li', 'write tests')
  .should('have.class', 'completed')

cy.get('form').find('input').should('not.have.class', 'disabled')

cy.get('li.selected').should('have.length', 3)

cy.get('#loading').should('not.exist')

cy.get('#accordion').should('not.have.css', 'display', 'none')

[docs.cypress.io] Assertions

Env

[docs.cypress.io] IntelliSense