@camunda/e2e-test-suite 0.0.835 → 0.0.836

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.
@@ -83,9 +83,12 @@ _8_8_1.test.describe('Cluster Setup Tests', () => {
83
83
  await homePage.clickSkipCustomization();
84
84
  await modelerHomePage.createCrossComponentProjectFolder();
85
85
  await modelerHomePage.clickHomeBreadcrumb();
86
- await (0, test_1.expect)(modelerHomePage.crossComponentProjectFolder).toBeVisible({
87
- timeout: 60000,
88
- });
86
+ // The project-rename PATCH commits on the backend, but navigating to
87
+ // Home right after can render the SPA's stale (pre-rename) project
88
+ // list without refetching, so the folder never appears under a plain
89
+ // toBeVisible. Reload between retries so the freshly renamed folder is
90
+ // fetched from the server and asserted visible.
91
+ await (0, UtilitiesPage_1.assertLocatorVisibleWithRetry)(page, modelerHomePage.crossComponentProjectFolder, 'cross component project folder', 30000, false, 5);
89
92
  });
90
93
  });
91
94
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/e2e-test-suite",
3
- "version": "0.0.835",
3
+ "version": "0.0.836",
4
4
  "description": "End-to-end test helpers for Camunda 8",
5
5
  "repository": {
6
6
  "type": "git",