// eslint-disable-next-line import/no-extraneous-dependencies import { mount } from 'cypress/react' // eslint-disable-next-line import/no-extraneous-dependencies import 'happo-cypress' // Augment the Cypress namespace to include type definitions for // your custom command. // Alternatively, can be defined in cypress/support/component.d.ts // with a at the top of your spec. declare global { namespace Cypress { interface Chainable { mount: typeof mount } } }