File tree Expand file tree Collapse file tree
dev-console/integration-tests/support/pages/add-flow
helm-plugin/integration-tests Expand file tree Collapse file tree Original file line number Diff line number Diff 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 =
Original file line number Diff line number Diff line change 1- # Disabled due to createRoot concurrent rendering failures (OCPBUGS-82511)
2- @helm @smoke @manual
1+ @helm @smoke
32Feature : Helm Release
43 As a user, I want to perform actions on the helm release
54
Original file line number Diff line number Diff line change 11before ( ( ) => {
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
2019after ( ( ) => {
21- cy . exec ( `oc delete namespace ${ Cypress . expose ( 'NAMESPACE' ) } ` , { failOnNonZeroExit : false } ) ;
20+ cy . exec ( `oc delete namespace ${ Cypress . env ( 'NAMESPACE' ) } ` , { failOnNonZeroExit : false } ) ;
2221} ) ;
Original file line number Diff line number Diff line change 11export 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 ) =>
You can’t perform that action at this time.
0 commit comments