06_offline_mobile.cy.js 389 B

12345678910111213141516
  1. import { setup } from '../../support/setup.js';
  2. import filterTests from '../../support/filterTests';
  3. setup();
  4. filterTests(['mobile'], () => {
  5. describe(`Live mobile tests`, () => {
  6. it('Can visit the page', () => {
  7. cy.visit('http://localhost:8080');
  8. });
  9. it('Mobile chat button should not be visible', () => {
  10. cy.get('#mobile-chat-button').should('not.exist');
  11. });
  12. });
  13. });