@o3r/testing
Version:
The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.
12 lines • 484 B
TypeScript
import type { SchematicOptionObject } from '@o3r/schematics';
export interface NgAddFixtureSchematicsSchema extends SchematicOptionObject {
/** Path to the component */
path: string;
/** Path to spec file of the component */
specFilePath?: string | undefined;
/** Skip the linter process which includes the run of EsLint and EditorConfig rules */
skipLinter: boolean;
/** Is the component a page */
page: boolean;
}
//# sourceMappingURL=schema.d.ts.map