@o3r/testing
Version:
The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.
19 lines • 553 B
TypeScript
import type { SchematicOptionObject } from '@o3r/schematics';
import { MethodType } from './models';
export interface NgAddFunctionsToFixtureSchematicsSchema extends SchematicOptionObject {
/**
* Path of the fixture file
*/
path: string;
/**
* List of method types to generate
*/
methods: MethodType[];
/**
* Query selector
*/
selector: string;
/** Skip the linter process which includes the run of EsLint and EditorConfig rules */
skipLinter: boolean;
}
//# sourceMappingURL=schema.d.ts.map