storybook/cypress/generated/addon-docs.spec.ts
Michael Shilman f2edc58755 Fix docs test
2021-09-14 13:05:59 +08:00

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');
});
});