17 lines
392 B
JavaScript
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');
|
|
});
|
|
});
|
|
});
|