@camunda/e2e-test-suite 0.0.29 → 0.0.30
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.
|
@@ -96,6 +96,7 @@ class ClusterPage {
|
|
|
96
96
|
.click({ timeout: 60000 });
|
|
97
97
|
}
|
|
98
98
|
async deleteCluster(name) {
|
|
99
|
+
await this.page.waitForTimeout(1000);
|
|
99
100
|
const clusterInstance = this.cluster(name).first();
|
|
100
101
|
if ((await clusterInstance.count()) <= 0) {
|
|
101
102
|
console.log(`No clusters found with name ${name}, skipping deletion.`);
|
|
@@ -53,8 +53,8 @@ _8_8_1.test.describe('Cluster Setup Tests', () => {
|
|
|
53
53
|
_8_8_1.test.slow();
|
|
54
54
|
const clusterName = 'AWS Cluster';
|
|
55
55
|
await homePage.clickClusters();
|
|
56
|
-
await clusterPage.
|
|
57
|
-
await clusterPage.assertClusterHealthyStatusWithRetry(clusterName
|
|
56
|
+
await clusterPage.createCluster(clusterName, 'AWS');
|
|
57
|
+
await clusterPage.assertClusterHealthyStatusWithRetry(clusterName);
|
|
58
58
|
await clusterPage.clickClusterLink(clusterName);
|
|
59
59
|
await clusterDetailsPage.assertComponentsHealth();
|
|
60
60
|
});
|