UNPKG

@o3r/testing

Version:

The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.

31 lines (30 loc) 817 B
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "NgAddFixtureSchematicsSchema", "title": "Add Otter Fixture to an existing component", "description": "Add Otter Fixture to an existing component", "properties": { "path": { "type": "string", "description": "Path to the spec file of the component" }, "specFilePath": { "type": "string", "description": "Path to spec file of the component" }, "skipLinter": { "type": "boolean", "description": "Skip the linter process which includes EsLint and EditorConfig rules applying", "default": false }, "page": { "type": "boolean", "description": "Is the component a page", "default": false } }, "additionalProperties": true, "required": [ "path" ] }