Skip to content

Commit 7bead28

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

4 files changed

Lines changed: 8 additions & 9 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: 1 addition & 2 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

frontend/packages/helm-plugin/integration-tests/support/commands/hooks.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
before(() => {
2-
const bridgePasswordIDP: string = Cypress.expose('BRIDGE_HTPASSWD_IDP') || 'test';
3-
const bridgePasswordUsername: string = Cypress.expose('BRIDGE_HTPASSWD_USERNAME') || 'test';
4-
cy.env(['BRIDGE_HTPASSWD_PASSWORD']).then(({ BRIDGE_HTPASSWD_PASSWORD }) => {
5-
cy.login(bridgePasswordIDP, bridgePasswordUsername, BRIDGE_HTPASSWD_PASSWORD || 'test');
6-
});
2+
const bridgePasswordIDP: string = Cypress.env('BRIDGE_HTPASSWD_IDP') || 'test';
3+
const bridgePasswordUsername: string = Cypress.env('BRIDGE_HTPASSWD_USERNAME') || 'test';
4+
const bridgePasswordPassword: string = Cypress.env('BRIDGE_HTPASSWD_PASSWORD') || 'test';
5+
cy.login(bridgePasswordIDP, bridgePasswordUsername, bridgePasswordPassword);
76
cy.document().its('readyState').should('eq', 'complete');
87
cy.window().then((win: any) => {
98
win.SERVER_FLAGS.userSettingsLocation = 'localstorage';
@@ -18,5 +17,5 @@ beforeEach(() => {
1817
});
1918

2019
after(() => {
21-
cy.exec(`oc delete namespace ${Cypress.expose('NAMESPACE')}`, { failOnNonZeroExit: false });
20+
cy.exec(`oc delete namespace ${Cypress.env('NAMESPACE')}`, { failOnNonZeroExit: false });
2221
});

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)