From c47e46dc5d9c575da1be5077e7d9b396b36ddaa1 Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 12 Mar 2025 11:04:26 +0100 Subject: [PATCH] test: updated pageLoadTimeout --- cypress.config.js | 2 +- test/cypress/integration/client/clientBalance.spec.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/cypress.config.js b/cypress.config.js index 5cf075e2a4d..033aa35c732 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -30,7 +30,7 @@ export default defineConfig({ trashAssetsBeforeRuns: false, requestTimeout: 10000, responseTimeout: 30000, - pageLoadTimeout: 60000, + pageLoadTimeout: 120000, defaultBrowser: 'chromium', fixturesFolder: 'test/cypress/fixtures', screenshotsFolder: 'test/cypress/screenshots', diff --git a/test/cypress/integration/client/clientBalance.spec.js b/test/cypress/integration/client/clientBalance.spec.js index 0228d71bc02..0d88a9e28cf 100644 --- a/test/cypress/integration/client/clientBalance.spec.js +++ b/test/cypress/integration/client/clientBalance.spec.js @@ -1,7 +1,6 @@ /// describe('Client balance', () => { beforeEach(() => { - cy.viewport(1280, 720); cy.login('developer'); cy.visit('#/customer/1101/balance'); });