Skip to content

Commit

Permalink
Merge pull request #1573 from aeternity/fix-home-page
Browse files Browse the repository at this point in the history
chore: switch to new deployment of home-page
  • Loading branch information
davidyuk authored Feb 4, 2025
2 parents 4906ce6 + 993d2c2 commit ee59e8d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VUE_APP_BACKEND_URL=https://base-backend.prd.aepps.com
VUE_APP_VAPID_PUBLIC_KEY=BHkQhNWW2TKfKfxo7vAgXkZGcVOXGrjhIZJlN1hKp6abIjWJgO8FYPswXJ35XEuKw46O9yZ-8KmsZ4-TXNBePcw
VUE_APP_HOME_PAGE_URL=https://docs.aeternity.com/aepp-base-home-page
VUE_APP_HOME_PAGE_URL=https://home.base.aepps.com
Binary file modified tests/e2e/specs/browser/__image_snapshots__/Browser opens #0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 7 additions & 8 deletions tests/e2e/specs/browser/index.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ describe('Browser', () => {
.viewport('iphone-se2')
.visit('/browser', { login: true });
cy.get('.progress-fake').should('not.exist');
// TODO: enable after fixing https://docs.aeternity.com/aepp-base-home-page
// cy.getIframeBody()
// .find('img')
// .should('be.visible')
// .and('length', 4)
// .and(($imgs) => Array.from($imgs).forEach((img) => {
// expect(img.naturalWidth).to.be.greaterThan(0);
// }));
cy.getIframeBody()
.find('img')
.should('be.visible')
.and('length', 3)
.and(($imgs) => Array.from($imgs).forEach((img) => {
expect(img.naturalWidth).to.be.greaterThan(0);
}));
cy.matchImage();
});
});

0 comments on commit ee59e8d

Please sign in to comment.