@camunda/e2e-test-suite 0.0.918 → 0.0.919

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.
@@ -28,10 +28,14 @@ _8_10_1.test.describe('Navigation Tests', () => {
28
28
  await appsPage.clickConsoleLink();
29
29
  await (0, test_1.expect)(homePage.consoleBanner).toBeVisible({ timeout: 120000 });
30
30
  });
31
- (0, _8_10_1.test)('Navigate to Operate', async ({ appsPage, operateHomePage }) => {
31
+ (0, _8_10_1.test)('Navigate to Operate', async ({ page, appsPage, operateHomePage }) => {
32
32
  await appsPage.clickCamundaApps();
33
33
  await appsPage.clickOperate(clusterName);
34
- await (0, test_1.expect)(operateHomePage.operateBanner).toBeVisible({ timeout: 120000 });
34
+ // Operate is a Vite SPA: when a module chunk 404s mid-deploy it renders a
35
+ // terminal "Something went wrong - Please reload the page" error boundary
36
+ // on which no amount of waiting helps. Reload between attempts so the next
37
+ // one fetches an index.html whose asset hashes resolve.
38
+ await (0, UtilitiesPage_1.assertLocatorVisibleWithRetry)(page, operateHomePage.operateBanner, 'Operate banner', 60000, false, 3);
35
39
  });
36
40
  (0, _8_10_1.test)('Navigate to Optimize', async ({ appsPage, optimizeHomePage }) => {
37
41
  await appsPage.clickCamundaApps();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/e2e-test-suite",
3
- "version": "0.0.918",
3
+ "version": "0.0.919",
4
4
  "description": "End-to-end test helpers for Camunda 8",
5
5
  "repository": {
6
6
  "type": "git",