Files
owncast/test/automated/browser/cypress/e2e/offline/06-offline_mobile.cy.js

17 lines
392 B
JavaScript

import { setup } from '../../support/setup.js';
import filterTests from '../../support/filterTests.js';
setup();
filterTests(['mobile'], () => {
describe(`Live mobile tests`, () => {
it('Can visit the page', () => {
cy.visit('http://localhost:8080');
});
it('Mobile chat button should not be visible', () => {
cy.get('#mobile-chat-button').should('not.exist');
});
});
});