Browse Source

test(CY): increase intercept message wait during excel download test

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/3853/head
Raju Udava 2 years ago
parent
commit
84a35fc049
  1. 5
      scripts/cypress/integration/common/7a_create_project_from_excel.js

5
scripts/cypress/integration/common/7a_create_project_from_excel.js

@ -174,8 +174,9 @@ export const genTest = (apiType, dbType) => {
});
cy.getActiveModal().find(".ant-btn-primary").click();
// wait for page to get loaded (issue observed in CI-CD)
cy.wait("@waitForPageLoad");
// Wait for page to get loaded (issue observed in CI-CD)
// Timeout set to 30 seconds. Default was 5 seconds. Increased due to delay in completion sometimes in CI-CD
cy.wait("@waitForPageLoad", { timeout: 30000 });
});
it("File Upload: Verify loaded data", () => {

Loading…
Cancel
Save