mirror of
https://github.com/trezor/trezor-wallet
synced 2025-05-25 18:28:48 +00:00
18 lines
450 B
JavaScript
18 lines
450 B
JavaScript
describe('Not initialized page', () => {
|
|
beforeEach(() => {
|
|
cy.viewport(1366, 768);
|
|
cy.visit('/');
|
|
});
|
|
|
|
it('header', () => {
|
|
cy.getTestElement('Main__page__device__header')
|
|
.should('be.visible')
|
|
.matchImageSnapshot();
|
|
});
|
|
|
|
it('body', () => {
|
|
cy.getTestElement('Page__device__not__initialized')
|
|
.should('be.visible')
|
|
.matchImageSnapshot();
|
|
});
|
|
}); |