@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) • 762 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "ngGeneratePlaywrightSanitySchematicsSchema",
"title": "Generate Playwright sanity",
"description": "ng generate Playwright sanity",
"properties": {
"projectName": {
"type": "string",
"description": "Project name",
"$default": {
"$source": "projectName"
}
},
"name": {
"type": "string",
"description": "Sanity name",
"x-prompt": "Sanity name?",
"minLength": 1,
"$default": {
"$source": "argv",
"index": 0
}
},
"path": {
"type": "string",
"description": "Directory containing the playwright sanity"
}
},
"additionalProperties": true,
"required": [
"name"
]
}