Increase cy.wait from 500 to 1000 #run_acceptance_tests

This commit is contained in:
M. Mert Yildiran 2022-05-15 10:51:30 +03:00
parent ba5ae3d3c8
commit 938c550e72
No known key found for this signature in database
GPG Key ID: D42ADB236521BF7A

View File

@ -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');
}