UNPKG

orphic-cypress

Version:

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

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