UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

15 lines (13 loc) 463 B
import { PluginsConfigAst } from '../babel/babelTransform' export interface Template<T = unknown> { message: string getExampleUrl: ({ componentFolder }: { componentFolder: string }) => string recommendedComponentFolder: string test(rootPath: string): { success: boolean, payload?: T } getPluginsCodeAst: ( payload: T | null, options: { cypressProjectRoot: string }, ) => PluginsConfigAst dependencies: string[] printHelper?: () => void }