Files
owncast/test/automated/browser/cypress/e2e/offline/02-offline_video_embed.cy.js

14 lines
337 B
JavaScript

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');
});
});