@camunda/e2e-test-suite 0.0.289 → 0.0.291
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.
- package/dist/pages/8.9/UtilitiesPage.js +1 -1
- package/dist/tests/8.10/utr-enabled-user-flows.spec.js +2 -1
- package/dist/tests/8.9/console-user-flows.spec.js +2 -2
- package/dist/tests/8.9/rba-enabled-v1-user-flows.spec.js +0 -1
- package/dist/tests/8.9/rba-enabled-v2-user-flows.spec.js +0 -1
- package/package.json +1 -1
|
@@ -282,7 +282,7 @@ async function clickInvitationLinkInEmail(page, id) {
|
|
|
282
282
|
}
|
|
283
283
|
exports.clickInvitationLinkInEmail = clickInvitationLinkInEmail;
|
|
284
284
|
async function assertLatestAlertEmail(id, mailSlurp, processName, alertText) {
|
|
285
|
-
const maxRetries =
|
|
285
|
+
const maxRetries = 5;
|
|
286
286
|
for (let retries = 0; retries < maxRetries; retries++) {
|
|
287
287
|
try {
|
|
288
288
|
const email = await mailSlurp.waitForLatestEmail(id, 120000);
|
|
@@ -82,7 +82,8 @@ _8_10_1.test.describe.parallel('UTR Enabled User Flows Test @tasklistV1', () =>
|
|
|
82
82
|
await (0, expectTextWithRetry_1.expectTextWithRetry)(page, taskName3);
|
|
83
83
|
});
|
|
84
84
|
});
|
|
85
|
-
|
|
85
|
+
//Skipped due to bug 5232: https://github.com/camunda/camunda-operator/issues/5232
|
|
86
|
+
_8_10_1.test.skip('User Task Restrictions Enabled Flow - Candidate Group', async ({ page, modelerHomePage, appsPage, modelerCreatePage, browser, taskPanelPage, ocIdentityGroupsPage, ocIdentityHomePage, }) => {
|
|
86
87
|
_8_10_1.test.slow();
|
|
87
88
|
const randomName = await (0, _setup_1.generateRandomStringAsync)(3);
|
|
88
89
|
const processName = 'User_Task_Process_Candidate_Group' + randomName;
|
|
@@ -145,9 +145,9 @@ _8_9_1.test.describe('Console User Flow Tests @tasklistV2', () => {
|
|
|
145
145
|
timeout: 20000,
|
|
146
146
|
});
|
|
147
147
|
(0, test_1.expect)(await clusterDetailsPage.alertsList.count()).toBeGreaterThan(1);
|
|
148
|
+
await (0, test_1.expect)(clusterDetailsPage.alertsList.nth(0)).toContainText(`Email`);
|
|
149
|
+
await clusterDetailsPage.assertAlertText('Amount triggered1');
|
|
148
150
|
}).toPass({ timeout: 60000 });
|
|
149
|
-
await (0, test_1.expect)(clusterDetailsPage.alertsList.nth(0)).toContainText(`Email`);
|
|
150
|
-
await clusterDetailsPage.assertAlertText('Amount triggered1');
|
|
151
151
|
});
|
|
152
152
|
await _8_9_1.test.step('Verify Alerts Received via Email for Incident', async () => {
|
|
153
153
|
await (0, sleep_1.sleep)(60000);
|
|
@@ -11,7 +11,6 @@ const expectTextWithRetry_1 = require("../../utils/assertionHelpers/expectTextWi
|
|
|
11
11
|
const users_1 = require("../../utils/users");
|
|
12
12
|
const mainUser = (0, users_1.getTestUser)('twentyFifthUser');
|
|
13
13
|
_8_9_1.test.describe.parallel('RBA Enabled User Flows Test @tasklistV1', () => {
|
|
14
|
-
_8_9_1.test.skip(true, 'Skipped due to bug 5232: https://github.com/camunda/camunda-operator/issues/5232');
|
|
15
14
|
const clusterNames = {
|
|
16
15
|
'RBA On User Flow - No User Permission': 'First RBA V1 Cluster',
|
|
17
16
|
'RBA On User Flow - Permission for One Process': 'Second RBA V1 Cluster',
|
|
@@ -12,7 +12,6 @@ const expectTextWithPagination_1 = require("../../utils/assertionHelpers/expectT
|
|
|
12
12
|
const users_1 = require("../../utils/users");
|
|
13
13
|
const mainUser = (0, users_1.getTestUser)('twentySixthUser');
|
|
14
14
|
_8_9_1.test.describe.parallel('RBA Enabled User Flows Test @tasklistV2', () => {
|
|
15
|
-
_8_9_1.test.skip(true, 'Skipped due to bug 5232: https://github.com/camunda/camunda-operator/issues/5232');
|
|
16
15
|
const clusterNames = {
|
|
17
16
|
'RBA On User Flow - No User Permission': 'First RBA V2 Cluster',
|
|
18
17
|
'RBA On User Flow - Permission for One Process': 'Second RBA V2 Cluster',
|