From 938c550e7226578fe2cd290c2531edf4330a28ed Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Sun, 15 May 2022 10:51:30 +0300 Subject: [PATCH] Increase `cy.wait` from `500` to `1000` #run_acceptance_tests --- acceptanceTests/cypress/integration/tests/UiTest.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acceptanceTests/cypress/integration/tests/UiTest.js b/acceptanceTests/cypress/integration/tests/UiTest.js index 70bb39096..15500392c 100644 --- a/acceptanceTests/cypress/integration/tests/UiTest.js +++ b/acceptanceTests/cypress/integration/tests/UiTest.js @@ -243,8 +243,8 @@ function checkFilter(filterDetails) { } function waitForFetch50AndPause() { - // wait half a second and pause the stream to preserve the DOM - cy.wait(500); + // wait a second and pause the stream to preserve the DOM + cy.wait(1000); cy.get('#pause-icon').click(); cy.get('#pause-icon').should('not.be.visible'); }