UNPKG

@nx/cypress

Version:

The Nx Plugin for Cypress contains executors and generators allowing your workspace to use the powerful Cypress integration testing capabilities.

14 lines (13 loc) 580 B
import { CreateNodes, CreateNodesV2 } from '@nx/devkit'; export interface CypressPluginOptions { ciTargetName?: string; targetName?: string; openTargetName?: string; componentTestingTargetName?: string; } export declare const createNodesV2: CreateNodesV2<CypressPluginOptions>; /** * @deprecated This is replaced with {@link createNodesV2}. Update your plugin to export its own `createNodesV2` function that wraps this one instead. * This function will change to the v2 function in Nx 20. */ export declare const createNodes: CreateNodes<CypressPluginOptions>;