chore(tests): clean up browser tests by splitting out federation UI tests

This commit is contained in:
Gabe Kangas
2024-11-15 18:39:15 -08:00
parent 8fa2546bef
commit 56d52c283c
11 changed files with 86 additions and 46 deletions

View File

@@ -0,0 +1,16 @@
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');
});
});
});