@camunda/e2e-test-suite 0.0.806 → 0.0.807
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.
|
@@ -105,9 +105,12 @@ _8_9_1.test.describe('Cluster Setup Tests', () => {
|
|
|
105
105
|
await homePage.clickSkipCustomization();
|
|
106
106
|
await modelerHomePage.createCrossComponentProjectFolder();
|
|
107
107
|
await modelerHomePage.clickHomeBreadcrumb();
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
108
|
+
// The project-rename PATCH commits on the backend, but navigating to
|
|
109
|
+
// Home right after can render the SPA's stale (pre-rename) project
|
|
110
|
+
// list without refetching, so the folder never appears under a plain
|
|
111
|
+
// toBeVisible. Reload between retries so the freshly renamed folder is
|
|
112
|
+
// fetched from the server and asserted visible.
|
|
113
|
+
await (0, UtilitiesPage_1.assertLocatorVisibleWithRetry)(page, modelerHomePage.crossComponentProjectFolder, 'cross component project folder', 30000, false, 5);
|
|
111
114
|
});
|
|
112
115
|
});
|
|
113
116
|
}
|