diff --git a/cypress/generated/addon-docs.spec.ts b/cypress/generated/addon-docs.spec.ts index 2c53141f7cf..4e3322e76bd 100644 --- a/cypress/generated/addon-docs.spec.ts +++ b/cypress/generated/addon-docs.spec.ts @@ -8,22 +8,24 @@ describe('addon-docs', () => { skipOn('vue3', () => { skipOn('html', () => { - 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 }); - }); + 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\) => /); - }); + cy.getDocsElement() + .find('pre.prismjs') + .each(($div) => { + const text = $div.text(); + expect(text).not.match(/^\(args\) => /); + }); + }); }); }); });