@camunda/e2e-test-suite 0.0.595 → 0.0.597
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/tests/8.6/navigation.spec.js +0 -1
- package/dist/tests/8.6/smoke-tests.spec.js +0 -1
- package/dist/tests/8.6/test-setup.spec.js +0 -1
- package/dist/tests/8.7/navigation.spec.js +0 -1
- package/dist/tests/8.7/smoke-tests.spec.js +0 -1
- package/dist/tests/8.7/test-setup.spec.js +2 -2
- package/dist/tests/8.8/test-setup.spec.js +2 -1
- package/dist/tests/8.9/test-setup.spec.js +2 -1
- package/package.json +1 -1
|
@@ -8,7 +8,6 @@ const users_1 = require("../../utils/users");
|
|
|
8
8
|
const testUser = (0, users_1.getTestUser)('twentyFirstUser');
|
|
9
9
|
_8_6_1.test.describe.configure({ mode: 'parallel' });
|
|
10
10
|
_8_6_1.test.describe('Navigation Tests', () => {
|
|
11
|
-
_8_6_1.test.skip(process.env.IS_AG === 'true', 'Skipping Navigation Tests due to console breaking changes');
|
|
12
11
|
const clusterName = 'Test Cluster';
|
|
13
12
|
_8_6_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
14
13
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
@@ -18,7 +18,6 @@ const users_1 = require("../../utils/users");
|
|
|
18
18
|
const testUser = (0, users_1.getTestUser)('thirteenthUser');
|
|
19
19
|
_8_6_1.test.describe.configure({ mode: 'parallel' });
|
|
20
20
|
_8_6_1.test.describe('Smoke Tests', () => {
|
|
21
|
-
_8_6_1.test.skip(process.env.IS_AG === 'true', 'Skipping Smoke Tests due to console breaking changes');
|
|
22
21
|
const clusterName = 'Test Cluster';
|
|
23
22
|
// Use fixed names for upgrade testing validation, random names for regular testing
|
|
24
23
|
const useFixedNames = process.env.UPGRADE_BASELINE === 'true';
|
|
@@ -7,7 +7,6 @@ const users_1 = require("../../utils/users");
|
|
|
7
7
|
const UtilitiesPage_1 = require("../../pages/8.6/UtilitiesPage");
|
|
8
8
|
_8_6_1.test.describe.configure({ mode: 'parallel' });
|
|
9
9
|
_8_6_1.test.describe('Cluster Setup Tests', () => {
|
|
10
|
-
_8_6_1.test.skip(process.env.IS_AG === 'true', 'Skipping Cluster Setup Tests due to console breaking changes');
|
|
11
10
|
_8_6_1.test.afterEach(async ({ page }, testInfo) => {
|
|
12
11
|
await (0, _setup_1.captureScreenshot)(page, testInfo);
|
|
13
12
|
await (0, _setup_1.captureFailureVideo)(page, testInfo);
|
|
@@ -8,7 +8,6 @@ const users_1 = require("../../utils/users");
|
|
|
8
8
|
const testUser = (0, users_1.getTestUser)('twentyFirstUser');
|
|
9
9
|
_8_7_1.test.describe.configure({ mode: 'parallel' });
|
|
10
10
|
_8_7_1.test.describe('Navigation Tests', () => {
|
|
11
|
-
_8_7_1.test.skip(process.env.IS_AG === 'true', 'Skipping Navigation Tests due to console breaking changes');
|
|
12
11
|
const clusterName = 'Test Cluster';
|
|
13
12
|
_8_7_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
14
13
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
@@ -30,7 +30,6 @@ const TIMEOUT = {
|
|
|
30
30
|
const useFixedNames = process.env.UPGRADE_BASELINE === 'true';
|
|
31
31
|
_8_7_1.test.describe.configure({ mode: 'parallel' });
|
|
32
32
|
_8_7_1.test.describe('Smoke Tests', () => {
|
|
33
|
-
_8_7_1.test.skip(process.env.IS_AG === 'true', 'Skipping Smoke Tests due to console breaking changes');
|
|
34
33
|
_8_7_1.test.beforeEach(async ({ page, loginPage }, testInfo) => {
|
|
35
34
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, testUser, (testInfo.workerIndex + 1) * 1000);
|
|
36
35
|
});
|
|
@@ -7,7 +7,6 @@ const UtilitiesPage_1 = require("../../pages/8.7/UtilitiesPage");
|
|
|
7
7
|
const users_1 = require("../../utils/users");
|
|
8
8
|
_8_7_1.test.describe.configure({ mode: 'parallel' });
|
|
9
9
|
_8_7_1.test.describe('Cluster Setup Tests', () => {
|
|
10
|
-
_8_7_1.test.skip(process.env.IS_AG === 'true', 'Skipping Cluster Setup Tests due to console breaking changes');
|
|
11
10
|
_8_7_1.test.afterEach(async ({ page }, testInfo) => {
|
|
12
11
|
await (0, _setup_1.captureScreenshot)(page, testInfo);
|
|
13
12
|
await (0, _setup_1.captureFailureVideo)(page, testInfo);
|
|
@@ -37,7 +36,8 @@ _8_7_1.test.describe('Cluster Setup Tests', () => {
|
|
|
37
36
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, users_1.testUsers.mainUser, (testInfo.workerIndex + 1) * 1000);
|
|
38
37
|
await homePage.clickClusters();
|
|
39
38
|
await clusterPage.createCluster(clusterName, 'AWS');
|
|
40
|
-
|
|
39
|
+
// AWS clusters on SaaS INT routinely need 10+ min to reach Healthy.
|
|
40
|
+
await clusterPage.assertClusterHealthyStatusWithRetry(clusterName, 300000, 1500000);
|
|
41
41
|
await clusterPage.clickClusterLink(clusterName);
|
|
42
42
|
await clusterDetailsPage.assertComponentsHealth();
|
|
43
43
|
});
|
|
@@ -55,7 +55,8 @@ _8_8_1.test.describe('Cluster Setup Tests', () => {
|
|
|
55
55
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, users_1.testUsers.mainUser, (testInfo.workerIndex + 1) * 1000);
|
|
56
56
|
await homePage.clickClusters();
|
|
57
57
|
await clusterPage.createCluster(clusterName, 'AWS');
|
|
58
|
-
|
|
58
|
+
// AWS clusters on SaaS INT routinely need 10+ min to reach Healthy.
|
|
59
|
+
await clusterPage.assertClusterHealthyStatusWithRetry(clusterName, 300000, 1500000);
|
|
59
60
|
await clusterPage.clickClusterLink(clusterName);
|
|
60
61
|
await clusterDetailsPage.assertComponentsHealth();
|
|
61
62
|
if (process.env.IS_AG !== 'true') {
|
|
@@ -77,7 +77,8 @@ _8_9_1.test.describe('Cluster Setup Tests', () => {
|
|
|
77
77
|
await (0, UtilitiesPage_1.loginWithRetry)(page, loginPage, users_1.testUsers.mainUser, (testInfo.workerIndex + 1) * 1000);
|
|
78
78
|
await homePage.clickClusters();
|
|
79
79
|
await clusterPage.createCluster(clusterName, 'AWS');
|
|
80
|
-
|
|
80
|
+
// AWS clusters on SaaS INT routinely need 10+ min to reach Healthy.
|
|
81
|
+
await clusterPage.assertClusterHealthyStatusWithRetry(clusterName, 300000, 1500000);
|
|
81
82
|
await clusterPage.clickClusterLink(clusterName);
|
|
82
83
|
await clusterDetailsPage.assertComponentsHealth();
|
|
83
84
|
if (process.env.IS_AG !== 'true') {
|