Fix tv only (#598)

* Remove TV Only container.
This commit is contained in:
Miguel Medeiros
2021-06-29 14:10:15 -03:00
committed by GitHub
parent df588695ec
commit 807d4b0327
3 changed files with 19 additions and 27 deletions

View File

@@ -35,8 +35,9 @@ describe('Mainnet', () => {
cy.viewport('macbook-16');
cy.visit('/');
cy.get('li:nth-of-type(4) > a').click().then(() => {
cy.viewport('macbook-16');
cy.wait(1000);
cy.get('.tv-only').should('not.be.visible');
cy.get('.blockchain-wrapper').should('be.visible');
});
});
@@ -45,7 +46,7 @@ describe('Mainnet', () => {
cy.get('li:nth-of-type(4) > a').click().then(() => {
cy.viewport('iphone-6');
cy.wait(1000);
cy.get('.tv-only').should('be.visible');
cy.get('.blockchain-wrapper').should('not.be.visible');
});
});
});