You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
389 B
16 lines
389 B
import { setup } from '../../support/setup.js'; |
|
import filterTests from '../../support/filterTests'; |
|
|
|
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'); |
|
}); |
|
}); |
|
});
|
|
|