Skip to content

Commit

Permalink
Fix init-deploy test to be more stable (#1078)
Browse files Browse the repository at this point in the history
  • Loading branch information
tplavcic authored Feb 4, 2025
1 parent ab67577 commit c59a4f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/apps/everest/.e2e/release/init-deploy.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ test.describe.configure({ retries: 0 });
await page.goto('/databases');
// TODO: try re-enable after fix for: https://perconadev.atlassian.net/browse/EVEREST-1693
if (size != 1 || db != 'psmdb') {
await waitForStatus(page, clusterName, 'Initializing', 15000);
await waitForStatus(page, clusterName, 'Initializing', 30000);
}
await waitForStatus(page, clusterName, 'Up', 600000);
});
Expand Down Expand Up @@ -210,7 +210,7 @@ test.describe.configure({ retries: 0 });
await suspendDbCluster(page, clusterName);
// One node clusters and Postgresql don't seem to show Stopping state
if (size != 1 && db != 'postgresql') {
await waitForStatus(page, clusterName, 'Stopping', 45000);
await waitForStatus(page, clusterName, 'Stopping', 60000);
}
await waitForStatus(page, clusterName, 'Paused', 180000);
});
Expand Down

0 comments on commit c59a4f7

Please sign in to comment.