UNPKG

@o3r/testing

Version:

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

34 lines (33 loc) 775 B
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "ngGeneratePlaywrightScenarioSchematicsSchema", "title": "Generate Playwright scenario", "description": "ng generate Playwright scenario", "properties": { "projectName": { "type": "string", "description": "Project name", "$default": { "$source": "projectName" } }, "name": { "type": "string", "description": "Scenario name", "x-prompt": "Scenario name?", "minLength": 1, "$default": { "$source": "argv", "index": 0 } }, "path": { "type": "string", "description": "Directory containing the playwright scenarios" } }, "additionalProperties": true, "required": [ "name" ] }