mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
describe('addon-action', () => {
|
|
before(() => {
|
|
cy.visitStorybook();
|
|
});
|
|
|
|
it('should have docs tab', () => {
|
|
cy.navigateToStory('example-button', 'primary');
|
|
cy.viewAddonTab('Docs');
|
|
cy.getDocsElement().find('h1').should('contain.text', 'Button');
|
|
});
|
|
});
|