increase wait times in cypress tests

This commit is contained in:
Keviin Åberg Kultalahti 2021-04-01 11:08:58 +02:00
parent ccf051ea43
commit 3a8e753eae
1 changed files with 1 additions and 1 deletions

View File

@ -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]