Skip to content

Commit be68345

Browse files
committed
OCPBUGS-82511: re-enable helm-release.feature
1 parent 6a8db8b commit be68345

5 files changed

Lines changed: 6 additions & 8 deletions

File tree

frontend/packages/dev-console/integration-tests/support/pages/add-flow/catalog-page.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ export const catalogPage = {
8282
throw new Error('Card is not available in Catalog');
8383
}
8484
}
85+
catalogPage.verifyPageTitle(type);
8586
},
8687
selectTemplateCategory: (templateCategoryTitle: string) => {
8788
const selector =

frontend/packages/helm-plugin/integration-tests/features/helm-release.feature

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Disabled due to createRoot concurrent rendering failures (OCPBUGS-82511)
2-
@helm @smoke @manual
1+
@helm @smoke
32
Feature: Helm Release
43
As a user, I want to perform actions on the helm release
54

@@ -17,8 +16,7 @@ Feature: Helm Release
1716

1817

1918
Scenario: Create Helm Release page details: HR-05-TC02
20-
Given user has created or selected namespace "aut-ci-helm"
21-
And user is at Software Catalog page
19+
Given user is at Software Catalog page
2220
When user selects Helm Charts type from Software Catalog page
2321
And user searches and selects "Nodejs" card from catalog page
2422
And user clicks on the Create button on side bar

frontend/packages/helm-plugin/integration-tests/support/step-definitions/common/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ When('user selects {string} card from add page', (cardName: string) => {
9494
});
9595

9696
Given('user is at Software Catalog page', () => {
97-
cy.byLegacyTestID('developer-catalog-header').should('exist').click({ force: true });
97+
cy.clickNavLink(['Ecosystem', 'Software Catalog']);
9898
});
9999

100100
When('user selects Helm Charts type from Software Catalog page', () => {

frontend/packages/helm-plugin/integration-tests/support/step-definitions/helm/helm-release.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ Then(
7474
);
7575

7676
Given('user is on the Helm page with helm release {string}', (helmRelease: string) => {
77-
cy.get('[data-quickstart-id="qs-nav-ecosystem"]').should('be.visible').click({ force: true });
78-
cy.get('[data-test-id="helm-nav"]').should('be.visible').click({ force: true });
77+
cy.clickNavLink(['Ecosystem', 'Helm']);
7978
helmPage.search(helmRelease);
8079
});
8180

frontend/packages/integration-tests/views/details-page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const detailsPage = {
22
titleShouldContain: (title: string) => {
3-
cy.get('[data-test="page-heading"]', { timeout: 30000 }).should('be.visible');
3+
cy.get('[data-test="page-heading"]', { timeout: 30000 }).should('exist');
44
return cy.get('[data-test="page-heading"]').contains(title, { timeout: 30000 });
55
},
66
sectionHeaderShouldExist: (sectionHeading: string) =>

0 commit comments

Comments
 (0)