diff --git a/e2e/cypress/support/util-commands.ts b/e2e/cypress/support/util-commands.ts index 963055675..adc305382 100644 --- a/e2e/cypress/support/util-commands.ts +++ b/e2e/cypress/support/util-commands.ts @@ -136,7 +136,8 @@ Cypress.Commands.add('updateJsonValue', (filePath: string, jsonPath: string, new }) Cypress.Commands.add('executeCliCommand', (command: string) => { - cy.exec(command, { timeout: 6000, failOnNonZeroExit: false }).then((response) => { + cy.exec(command, { timeout: 9000, failOnNonZeroExit: false }).then((response) => { + cy.wait(3000) return response }); })