02_online_video_embed.cy.js 279 B

123456789101112
  1. import { setup } from '../../support/setup.js';
  2. setup();
  3. describe(`Online video embed`, () => {
  4. it('Can visit the page', () => {
  5. cy.visit('http://localhost:8080');
  6. });
  7. it('Should have a play button', () => {
  8. cy.get('.vjs-big-play-button').should('be.visible');
  9. });
  10. });