UNPKG

@nx/cypress

Version:

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

18 lines 578 B
import { TargetConfiguration, Tree } from '@nx/devkit'; interface FindTargetOptions { project: string; /** * contains buildable target such as react app or angular app * <project>:<target>[:<configuration>] */ buildTarget?: string; validExecutorNames: Set<string>; skipGetOptions?: boolean; } export interface FoundTarget { config?: TargetConfiguration; target: string; } export declare function findBuildConfig(tree: Tree, options: FindTargetOptions): Promise<FoundTarget>; export {}; //# sourceMappingURL=find-target-options.d.ts.map