UNPKG

@nx-plugins/testing-library

Version:

The Nx Plugin for Testing Library that contains executors and generators for allowing your workspace to use powerful Testing Library testing capabilities.

10 lines (9 loc) 595 B
import { Tree } from '@nrwl/devkit'; import { ReactTestComponentGeneratorSchema } from './schema'; export interface NormalizedSchema extends ReactTestComponentGeneratorSchema { projectSourceRoot: string; className: string; } export declare function reactTestComponentGenerator(host: Tree, schema: ReactTestComponentGeneratorSchema): Promise<import("@nrwl/devkit").GeneratorCallback>; export default reactTestComponentGenerator; export declare const reactTestComponentSchematic: (generatorOptions: ReactTestComponentGeneratorSchema) => (tree: any, context: any) => Promise<any>;