From 33f0675bd6dcbd98100319d1cad17edc1a45a580 Mon Sep 17 00:00:00 2001 From: Arie Peterson <arie@greenhost.nl> Date: Tue, 16 May 2023 12:34:25 +0200 Subject: [PATCH] Increase cypress DOM command timeout --- tests/cypress.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/cypress.config.js b/tests/cypress.config.js index d12e1b63..b73b7e05 100644 --- a/tests/cypress.config.js +++ b/tests/cypress.config.js @@ -10,6 +10,8 @@ module.exports = defineConfig({ require('cypress-terminal-report/src/installLogsPrinter')(on, options); }, }, + // We have some slow calls to load the list of apps, users etc. + defaultCommandTimeout: 10000, videoCompression: false, videoUploadOnPasses: false }); -- GitLab