mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
Add docs source e2e test
This commit is contained in:
parent
a18ae41dad
commit
930b08e71b
@ -12,5 +12,19 @@ describe('addon-action', () => {
|
||||
|
||||
// inline story rendering
|
||||
cy.getDocsElement().find('button').should('contain.text', 'Button');
|
||||
|
||||
cy.getDocsElement()
|
||||
.find('.docblock-code-toggle')
|
||||
.first()
|
||||
.should('contain.text', 'Show code')
|
||||
.click();
|
||||
|
||||
cy.getDocsElement()
|
||||
.find('code.language-jsx')
|
||||
.first()
|
||||
.should(($div) => {
|
||||
const text = $div.text();
|
||||
expect(text).not.match(/^\(args\) => /);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user