@camunda/e2e-test-suite 0.0.589 → 0.0.590
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -79,7 +79,10 @@ _8_10_1.test.describe('Cluster Setup Tests', () => {
|
|
|
79
79
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, users_1.testUsers.mainUser, (testInfo.workerIndex + 1) * 1000);
|
|
80
80
|
await homePage.clickClusters();
|
|
81
81
|
await clusterPage.createCluster(clusterName, 'AWS');
|
|
82
|
-
|
|
82
|
+
// AWS clusters on SaaS INT can take 10+ min to reach Healthy. The helper's
|
|
83
|
+
// default totalTimeout (500s) only fits ~2 attempts at the 300s per-attempt
|
|
84
|
+
// wait above — bump to 25 min to allow the full 5 retries to complete.
|
|
85
|
+
await clusterPage.assertClusterHealthyStatusWithRetry(clusterName, 300000, 1500000);
|
|
83
86
|
await clusterPage.clickClusterLink(clusterName);
|
|
84
87
|
await clusterDetailsPage.assertComponentsHealth();
|
|
85
88
|
if (process.env.IS_AG !== 'true') {
|