32 | );
33 | }
34 |
35 | export default App;
36 |
--------------------------------------------------------------------------------
/src/CustomCommand.spec.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { mount } from '@cypress/react';
3 |
4 | it('uses a custom command written in TypeScript', () => {
5 | const Comp: React.FC = () => {
6 | const onClick = cy.stub()
7 | return (
8 |