Skip to content

Commit 0d482c5

Browse files
committed
test: fix e2e of app list
1 parent c106fe6 commit 0d482c5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/store/plugins/ui/appsMetadata.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Vue from 'vue';
22
import { handleUnknownError } from '../../../lib/utils';
33
import { PROTOCOL_DEFAULT } from '../../../lib/constants';
44

5-
const notPaddedIconAt = ['superhero.com', 'graffiti.aeternity.com', 'faucet.aepps.com'];
5+
const notPaddedIconAt = ['superhero.com', 'faucet.aepps.com'];
66

77
export default (store) => store.registerModule('appsMetadata', {
88
namespaced: true,
3.71 KB
Loading

tests/e2e/specs/browser.cy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe('Browser', () => {
1616
})),
1717
},
1818
});
19-
cy.get('.ae-card img').should('be.visible').and('length', 2).and(ensureImagesLoaded);
19+
cy.get('.ae-card img').should('be.visible').and('length', 1).and(ensureImagesLoaded);
2020
cy.get('.shortcuts img:not([src^="data:image"])')
2121
.should('be.visible')
2222
.and('length', 1)
@@ -58,7 +58,7 @@ describe('Browser', () => {
5858
cy.visit('/', { isDesktop: true });
5959
cy.get('.apps img:not([src^="data:image"])')
6060
.should('be.visible')
61-
.and('length', 2)
61+
.and('length', 1)
6262
.and(ensureImagesLoaded);
6363
cy.matchImage();
6464
cy.get('a').contains('Faucet Aepp').should('have.attr', 'href', 'https://faucet.aepps.com');

0 commit comments

Comments
 (0)