@camunda/e2e-test-suite 0.0.776 → 0.0.777

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 @@ class OperateProcessesPage {
79
79
  await this.processFinishedInstancesCheckbox.click();
80
80
  }
81
81
  async clickProcessInstanceLink(processName) {
82
- const maxRetries = 3;
82
+ // Increased from 3 to 5 retries: process-instance indexing in Operate can take
83
+ // longer than 3 × (60 s visible + 10 s reload) on busy SaaS environments,
84
+ // causing intermittent failures in the webhook connector nightly tests.
85
+ const maxRetries = 5;
83
86
  for (let retries = 0; retries < maxRetries; retries++) {
84
87
  try {
85
88
  await (0, test_1.expect)(this.processInstanceLink(processName)).toBeVisible({
@@ -79,7 +79,10 @@ class OperateProcessesPage {
79
79
  await this.processFinishedInstancesCheckbox.click();
80
80
  }
81
81
  async clickProcessInstanceLink(processName) {
82
- const maxRetries = 3;
82
+ // Increased from 3 to 5 retries: process-instance indexing in Operate can take
83
+ // longer than 3 × (60 s visible + 10 s reload) on busy SaaS environments,
84
+ // causing intermittent failures in the webhook connector nightly tests.
85
+ const maxRetries = 5;
83
86
  for (let retries = 0; retries < maxRetries; retries++) {
84
87
  try {
85
88
  await (0, test_1.expect)(this.processInstanceLink(processName)).toBeVisible({
@@ -79,7 +79,10 @@ class OperateProcessesPage {
79
79
  await this.processFinishedInstancesCheckbox.click();
80
80
  }
81
81
  async clickProcessInstanceLink(processName) {
82
- const maxRetries = 3;
82
+ // Increased from 3 to 5 retries: process-instance indexing in Operate can take
83
+ // longer than 3 × (60 s visible + 10 s reload) on busy SaaS environments,
84
+ // causing intermittent failures in the webhook connector nightly tests.
85
+ const maxRetries = 5;
83
86
  for (let retries = 0; retries < maxRetries; retries++) {
84
87
  try {
85
88
  await (0, test_1.expect)(this.processInstanceLink(processName)).toBeVisible({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/e2e-test-suite",
3
- "version": "0.0.776",
3
+ "version": "0.0.777",
4
4
  "description": "End-to-end test helpers for Camunda 8",
5
5
  "repository": {
6
6
  "type": "git",