@camunda/e2e-test-suite 0.0.696 → 0.0.698
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.
|
@@ -410,11 +410,14 @@ class IdpCreatePage {
|
|
|
410
410
|
});
|
|
411
411
|
}
|
|
412
412
|
async extractionResultsAreVisible() {
|
|
413
|
+
// Structured extraction (notably AWS Bedrock) is slow to render the Test
|
|
414
|
+
// Summary/Details sections; 60s was not enough and caused flaky nightly
|
|
415
|
+
// failures. Align with the 8.8 page object, which already uses 180s.
|
|
413
416
|
await (0, test_1.expect)(this.structured_TestSummaryResult).toBeVisible({
|
|
414
|
-
timeout:
|
|
417
|
+
timeout: 180000,
|
|
415
418
|
});
|
|
416
419
|
await (0, test_1.expect)(this.structured_DetailsResult).toBeVisible({
|
|
417
|
-
timeout:
|
|
420
|
+
timeout: 180000,
|
|
418
421
|
});
|
|
419
422
|
}
|
|
420
423
|
async clickPublishTemplateButton() {
|