UNPKG

@nx/cypress

Version:

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

13 lines 419 B
import { Tree } from '@nx/devkit'; export interface CypressBaseSetupSchema { project: string; /** * directory from the projectRoot where cypress files will be generated * default is `cypress` * */ directory?: string; js?: boolean; jsx?: boolean; } export declare function addBaseCypressSetup(tree: Tree, options: CypressBaseSetupSchema): void; //# sourceMappingURL=base-setup.d.ts.map