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