02_offline_video_embed.cy.js 337 B

12345678910111213
  1. import { setup } from '../../support/setup.js';
  2. setup();
  3. describe(`Offline video embed`, () => {
  4. it('Can visit the page', () => {
  5. cy.visit('http://localhost:8080/embed/video');
  6. });
  7. // Offline banner
  8. it('Has correct offline embed values', () => {
  9. cy.contains('This stream is not currently live.').should('be.visible');
  10. });
  11. });