From cd99703ff5c56fda39b4f50efc90dae01ca9f869 Mon Sep 17 00:00:00 2001 From: TheBestPessimist Date: Tue, 6 Aug 2019 12:05:09 +0300 Subject: [PATCH] Bugfix https://github.com/metasfresh/metasfresh-e2e/issues/248 --- cypress/support/commands/action.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/support/commands/action.js b/cypress/support/commands/action.js index 17f62e75..22f3139d 100644 --- a/cypress/support/commands/action.js +++ b/cypress/support/commands/action.js @@ -65,11 +65,11 @@ Cypress.Commands.add('executeQuickAction', (actionName, defaultAction = false, m cy.get(path) .should('not.have.class', 'quick-actions-item-disabled') .get(path) - .click({ timeout: 10_000 }) + .click({ timeout: 10000 }) .then(el => { if (isDialogExpected) { cy.wrap(el) - .get('.panel-modal', { timeout: 10_000 }) // wait up to 10 secs for the modal to appear + .get('.panel-modal', { timeout: 10000 }) // wait up to 10 secs for the modal to appear .should('exist'); } });