Browse Source

increase wait times in cypress tests

master
Keviin Åberg Kultalahti 6 years ago
parent
commit
3a8e753eae
  1. 2
      packages/builder/cypress/support/commands.js

2
packages/builder/cypress/support/commands.js

@ -156,7 +156,7 @@ Cypress.Commands.add("addComponent", (category, component) => {
cy.get(`[data-cy="category-${category}"]`).click()
}
cy.get(`[data-cy="component-${component}"]`).click()
cy.wait(500)
cy.wait(1000)
cy.location().then(loc => {
const params = loc.pathname.split("/")
const componentId = params[params.length - 1]

Loading…
Cancel
Save