mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:21:10 +08:00
27 lines
746 B
TypeScript
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');
|
|
});
|
|
});
|