Skip to content

Commit 38c0fb7

Browse files
teoneriyaz-ghatiraphaelvrosasatya-in
authored
Support 200 statuses instead of 201 (#166)
Co-authored-by: riyaz C Ghati <riyaz.chandasaheb.ghati@intel.com> Co-authored-by: raphaelvrosa <raphael.rosa@intel.com> Co-authored-by: satya-in <satyaranjan.acharya@intel.com>
1 parent d268810 commit 38c0fb7

17 files changed

Lines changed: 127 additions & 89 deletions

File tree

apps/admin/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.14
1+
2.0.15-dev

apps/admin/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ apiVersion: v2
44
name: orch-ui-admin
55
description: Deploy Edge-Native Software Platform UI Admin pods on Kubernetes
66
type: application
7-
version: 2.0.14
7+
version: 2.0.15-dev
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

1010
# This value is supplied only to enable local unbuilt deployment of released content.
11-
appVersion: "2.0.14"
11+
appVersion: "2.0.15-dev"
1212
annotations:
1313
api_observability_monitor: 0.0.5
1414
dependencies: []

apps/app-orch/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.17
1+
2.0.18-dev

apps/app-orch/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ apiVersion: v2
44
name: orch-ui-app-orch
55
description: Deploy the Edge Orchestrator app-orch pod
66
type: application
7-
version: 2.0.17
7+
version: 2.0.18-dev
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

1010
# This value is supplied only to enable local unbuilt deployment of released content.
11-
appVersion: "2.0.17"
11+
appVersion: "2.0.18-dev"
1212
annotations: {}
1313
dependencies: []

apps/cluster-orch/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.18
1+
2.0.19-dev

apps/cluster-orch/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ apiVersion: v2
44
name: orch-ui-cluster-orch
55
description: Deploy the Edge Orchestrator cluster-orch pod
66
type: application
7-
version: 2.0.18
7+
version: 2.0.19-dev
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

1010
# This value is supplied only to enable local unbuilt deployment of released content.
11-
appVersion: "2.0.18"
11+
appVersion: "2.0.19-dev"
1212
annotations: {}
1313
dependencies: []

apps/infra/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.14
1+
1.0.15-dev

apps/infra/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ apiVersion: v2
44
name: orch-ui-infra
55
description: Deploy the Edge-Native Software Platform Infrastructure pod
66
type: application
7-
version: 1.0.14
7+
version: 1.0.15-dev
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

10-
appVersion: "1.0.14"
10+
appVersion: "1.0.15-dev"
1111
dependencies: []
1212
annotations: {}

apps/infra/src/components/pages/Locations/Locations.pom.ts

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ export class LocationsPom extends CyPom<Selectors, ApiAliases> {
5252
public goToAddSubRegion(parentName: string): void {
5353
this.root
5454
.dataCy("region")
55+
.should("be.visible", { timeout: 5000 })
5556
.contains(parentName)
57+
.should("be.visible", { timeout: 5000 })
5658
.parent()
5759
.parent()
5860
.within(() => {
@@ -67,15 +69,26 @@ export class LocationsPom extends CyPom<Selectors, ApiAliases> {
6769
_.forEach(parentRegions.slice(0, -1), (r) => {
6870
this.regionSiteTreePom.expandRegion(r);
6971
});
72+
this.root.dataCy("region").then(() => {
73+
cy.contains('[data-cy="region"]', lastRegion, { timeout: 5000 })
74+
.should("be.visible")
75+
.parent()
76+
.parent()
77+
.within(() => {
78+
cy.dataCy("regionTreePopup").click();
79+
});
80+
});
7081

71-
this.root
72-
.dataCy("region")
73-
.contains(lastRegion)
74-
.parent()
75-
.parent()
76-
.within(() => {
77-
cy.dataCy("regionTreePopup").click();
78-
});
82+
// this.root
83+
// .dataCy("region")
84+
// .should("be.visible", { timeout: 10000 })
85+
// .contains(lastRegion)
86+
// .should("be.visible", { timeout: 10000 })
87+
// .parent()
88+
// .parent()
89+
// .within(() => {
90+
// cy.dataCy("regionTreePopup").click();
91+
// });
7992
cy.contains("Add Site").click();
8093
cy.url().should("contain", "sites/new");
8194
}

apps/root/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.14
1+
2.0.15-dev

0 commit comments

Comments
 (0)