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

This commit is contained in:
Gabe Kangas
2024-11-15 18:46:18 -08:00
parent 8fa2546bef
commit 56d52c283c
11 changed files with 86 additions and 46 deletions
@@ -0,0 +1,13 @@
import { setup } from '../../support/setup.js';
setup();
describe(`Offline video embed`, () => {
it('Can visit the page', () => {
cy.visit('http://localhost:8080/embed/video');
});
// Offline banner
it('Has correct offline embed values', () => {
cy.contains('This stream is not currently live.').should('be.visible');
});
});