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