mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:51:28 +08:00
33 lines
922 B
TypeScript
33 lines
922 B
TypeScript
import { skipOn } from '@cypress/skip-test';
|
|
|
|
describe('addon-docs', () => {
|
|
beforeEach(() => {
|
|
cy.visitStorybook();
|
|
cy.navigateToStory('example-button', 'docs');
|
|
});
|
|
|
|
skipOn('vue3', () => {
|
|
skipOn('html', () => {
|
|
skipOn('react', () => {
|
|
it('should provide source snippet', () => {
|
|
cy.getDocsElement()
|
|
.find('.docblock-code-toggle')
|
|
.each(($div) => {
|
|
cy.wrap($div)
|
|
.should('contain.text', 'Show code')
|
|
// use force click so cypress does not automatically scroll, making the source block visible on this step
|
|
.click({ force: true });
|
|
});
|
|
|
|
cy.getDocsElement()
|
|
.find('pre.prismjs')
|
|
.each(($div) => {
|
|
const text = $div.text();
|
|
expect(text).not.match(/^\(args\) => /);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|