storybook/cypress/generated/addon-viewport.spec.ts
Gaëtan Maisse 6d79ed2b88
fix(e2e): update test of viewport to match latest example stories
Example stories used in CLI have been updated recently however the E2E tests were not changed accordingly.
2020-07-20 21:23:16 +02:00

17 lines
470 B
TypeScript

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