UNPKG

@nx/cypress

Version:

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

7 lines (6 loc) 596 B
import { GeneratorCallback, ProjectConfiguration, Tree } from '@nx/devkit'; import { CypressComponentConfigurationSchema } from './schema'; export declare function componentConfigurationGenerator(tree: Tree, options: CypressComponentConfigurationSchema): Promise<GeneratorCallback>; export declare function componentConfigurationGeneratorInternal(tree: Tree, options: CypressComponentConfigurationSchema): Promise<GeneratorCallback>; export declare function updateTsConfigForComponentTesting(tree: Tree, projectConfig: ProjectConfiguration): void; export default componentConfigurationGenerator;