Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions web/cypress/e2e/coo/02.acm_alerting_ui.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ describe('ACM Alerting UI', { tags: ['@coo', '@alerts'] }, () => {

it('Navigate to Fleet Management > local-cluster > Observe > Alerting', () => {
// check monitoring-plugin UI is not been affected
cy.switchPerspective('Core platform');
nav.sidenav.clickNavLink(['Observe', 'Alerting']);
commonPages.titleShouldHaveText('Alerting')
nav.sidenav.clickNavLink(['Observe', 'Metrics']);
Expand Down
3 changes: 2 additions & 1 deletion web/cypress/support/commands/operator-commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,8 @@ const operatorUtils = {
cy.log(`Observability-operator pod is now running in namespace: ${MCP.namespace}`);
});
});


cy.switchPerspective('Core platform');
cy.get('#page-sidebar').then(($sidebar) => {
const section = $sidebar.text().includes('Ecosystem') ? 'Ecosystem' : 'Operators';
nav.sidenav.clickNavLink([section, 'Installed Operators']);
Expand Down