Skip to content

Commit

Permalink
fix merge fail
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-cox committed Nov 6, 2024
1 parent 0f61462 commit 6a4c4ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cypress/e2e/tests/pages/global-settings/branding.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ describe('Branding', { testIsolation: 'off' }, () => {

HomePagePo.navTo();
burgerMenu.headerBrandLogoImage().should('be.visible').then((el) => {
expect(el).to.have.attr('src').includes('/img/rancher-logo.66cf5910.svg');
expect(el).to.have.attr('src').includes('/img/rancher-logo');
});

BurgerMenuPo.toggle();
burgerMenu.brandLogoImage().should('be.visible').then((el) => {
expect(el).to.have.attr('src').includes('/img/rancher-logo.66cf5910.svg');
expect(el).to.have.attr('src').includes('/img/rancher-logo');
});
});

Expand Down Expand Up @@ -236,7 +236,7 @@ describe('Branding', { testIsolation: 'off' }, () => {

homePage.goTo();
homePage.getBrandBannerImage().should('be.visible').then((el) => {
expect(el).to.have.attr('src').includes('/img/banner.b321f7eb.svg');
expect(el).to.have.attr('src').includes('/img/banner');
});
});

Expand Down Expand Up @@ -309,7 +309,7 @@ describe('Branding', { testIsolation: 'off' }, () => {

loginPage.goTo();
loginPage.loginBackgroundImage().should('be.visible').then((el) => {
expect(el).to.have.attr('src').includes('/img/login-landscape.911b980e.svg');
expect(el).to.have.attr('src').includes('/img/login-landscape');
});

cy.login();
Expand Down

0 comments on commit 6a4c4ba

Please sign in to comment.