@camunda/e2e-test-suite 0.0.961 → 0.0.962
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.
|
@@ -248,17 +248,17 @@ _8_9_1.test.describe('HTO User Flow Tests', () => {
|
|
|
248
248
|
await (0, test_1.expect)(operateHomePage.editVariableSpinner).not.toBeVisible({
|
|
249
249
|
timeout: 180000,
|
|
250
250
|
});
|
|
251
|
+
// Operate can render a stale /v2/variables/search response when two
|
|
252
|
+
// polls overlap right after the update, and then stops polling
|
|
253
|
+
// variables, so the panel stays pinned to the old value and a passive
|
|
254
|
+
// wait can never recover. Re-assert across page reloads instead.
|
|
255
|
+
await (0, UtilitiesPage_1.assertPageTextWithRetry)(page, '"updatedValue"');
|
|
251
256
|
await (0, test_1.expect)(page.getByText('"testValue"')).not.toBeVisible({
|
|
252
257
|
timeout: 60000,
|
|
253
258
|
});
|
|
254
|
-
await (0, test_1.expect)(page.getByText('"updatedValue"')).toBeVisible({
|
|
255
|
-
timeout: 90000,
|
|
256
|
-
});
|
|
257
259
|
await appsPage.clickCamundaApps();
|
|
258
260
|
await appsPage.clickTasklist(clusterName);
|
|
259
|
-
await (0,
|
|
260
|
-
timeout: 20000,
|
|
261
|
-
});
|
|
261
|
+
await (0, UtilitiesPage_1.assertLocatorVisibleWithRetry)(page, taskPanelPage.taskListPageBanner, 'Tasklist banner');
|
|
262
262
|
await (0, expectTextWithRetry_1.expectTextWithRetry)(page, processName);
|
|
263
263
|
await taskPanelPage.openTask(processName);
|
|
264
264
|
await (0, test_1.expect)(page.getByText('testVariable')).toBeVisible({
|