UNPKG

orphic-cypress

Version:

Set of utilities and typescript transformers to cover storybook stories with cypress component tests

17 lines (15 loc) 321 B
/** * General utils for cypress including clean methods of adding commands and tasks * * @module */ export * from "./add"; export * from "./data-cy"; /* eslint-disable @typescript-eslint/no-namespace */ declare global { namespace Cypress { interface Chainable { mount(el: JSX.Element): null; } } }