diff --git a/.env b/.env index 21eafa084..4c1d68b49 100644 --- a/.env +++ b/.env @@ -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 diff --git a/tests/e2e/specs/browser/__image_snapshots__/Browser opens #0.png b/tests/e2e/specs/browser/__image_snapshots__/Browser opens #0.png index 50590c0e9..df70c3c66 100644 Binary files a/tests/e2e/specs/browser/__image_snapshots__/Browser opens #0.png and b/tests/e2e/specs/browser/__image_snapshots__/Browser opens #0.png differ diff --git a/tests/e2e/specs/browser/index.cy.js b/tests/e2e/specs/browser/index.cy.js index bc61560cd..ca65ea5f2 100644 --- a/tests/e2e/specs/browser/index.cy.js +++ b/tests/e2e/specs/browser/index.cy.js @@ -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(); }); });