mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-12 11:28:56 +00:00
26 lines
631 B
JavaScript
26 lines
631 B
JavaScript
describe('Dashboard page', () => {
|
|
beforeEach(() => {
|
|
cy.viewport(1366, 1800);
|
|
cy.visit('/');
|
|
});
|
|
|
|
it('navigation', () => {
|
|
cy.getTestElement('Main__page__navigation')
|
|
.should('be.visible')
|
|
.matchImageSnapshot();
|
|
});
|
|
|
|
it.skip('content', () => {
|
|
cy.getTestElement('Dashboard__page__content')
|
|
.should('be.visible')
|
|
.matchImageSnapshot();
|
|
});
|
|
|
|
// Menu
|
|
|
|
it.skip('device header', () => {
|
|
cy.getTestElement('Main__page__device__header')
|
|
.should('be.visible')
|
|
.matchImageSnapshot();
|
|
});
|
|
}); |