storybook/cypress/generated/addon-backgrounds.spec.ts
Yann Braga 9e89143cab test(e2e): add canvas body element selector
- also update tests for addon-backgrounds
2020-09-24 14:58:27 +02:00

27 lines
746 B
TypeScript

describe('addon-backgrounds', () => {
before(() => {
cy.visitStorybook();
});
it('should have a dark background', () => {
// click on the button
cy.navigateToStory('example-button', 'primary');
// Click on the addon and select dark background
cy.get('[title="Change the background of the preview"]').click();
cy.get('#dark').click();
cy.getCanvasBodyElement().should('have.css', 'background-color', 'rgb(51, 51, 51)');
});
it('should apply a grid', () => {
// click on the button
cy.navigateToStory('example-button', 'primary');
// Toggle grid view
cy.get('[title="Apply a grid to the preview"]').click();
cy.getCanvasBodyElement().should('have.css', 'background-image');
});
});