Skip to content

Commit

Permalink
Enable e2e tests which test titles
Browse files Browse the repository at this point in the history
  • Loading branch information
codyrancher committed Nov 6, 2024
1 parent 54f24cf commit 1f796dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,8 @@ describe('Cluster Dashboard', { testIsolation: 'off', tags: ['@explorer', '@admi
BurgerMenuPo.checkIfClusterMenuLinkIsHighlighted('local');
});

it.skip('[Vue3 Skip]: has the correct title', () => {
clusterDashboard.goTo('local');
clusterDashboard.waitForPage(undefined, 'cluster-events');
it('has the correct title', () => {
ClusterDashboardPagePo.navTo();

cy.title().should('eq', 'Rancher - local - Cluster Dashboard');
});
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/tests/pages/fleet/dashboard.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { FleetDashboardPagePo } from '@/cypress/e2e/po/pages/fleet/fleet-dashboa
// import BurgerMenuPo from '@/cypress/e2e/po/side-bars/burger-side-menu.po';
// import { LONG_TIMEOUT_OPT } from '@/cypress/support/utils/timeouts';

describe.skip('[Vue3 Skip]: Fleet Dashboard', { tags: ['@fleet', '@adminUser'] }, () => {
describe('Fleet Dashboard', { tags: ['@fleet', '@adminUser'] }, () => {
let fleetDashboardPage: FleetDashboardPagePo;
// const repoName = 'fleet-e2e-test-dashboard';

Expand Down

0 comments on commit 1f796dc

Please sign in to comment.