fbredius/storybook

View on GitHub
cypress/generated/addon-viewport.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
describe('addon-viewport', () => {
  before(() => {
    cy.visitStorybook();
  });

  it('should have viewport button in the toolbar', () => {
    cy.navigateToStory('example-button', 'Primary');

    // Click on viewport button and select small mobile
    cy.get('[title="Change the size of the preview"]').click();
    cy.get('#mobile1').click();

    // Check that Welcome story is still displayed
    cy.getStoryElement().should('contain.text', 'Button');
  });
});