Add docs source e2e test

This commit is contained in:
Michael Shilman 2021-10-08 14:30:28 +08:00
parent a18ae41dad
commit 930b08e71b

View File

@ -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\) => /);
});
});
});