mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:21:08 +08:00
Example stories used in CLI have been updated recently however the E2E tests were not changed accordingly.
17 lines
470 B
TypeScript
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');
|
|
});
|
|
});
|