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) 581 B
import { Tree } from '@nrwl/devkit'; import { VueTestComponentGeneratorSchema } from './schema'; export interface NormalizedSchema extends VueTestComponentGeneratorSchema { projectSourceRoot: string; className: string; } export declare function vueTestComponentGenerator(host: Tree, schema: VueTestComponentGeneratorSchema): Promise<import("@nrwl/devkit").GeneratorCallback>; export default vueTestComponentGenerator; export declare const vueTestComponentSchematic: (generatorOptions: VueTestComponentGeneratorSchema) => (tree: any, context: any) => Promise<any>;