schema.json 633 B

1234567891011121314151617181920
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema",
  3. "$id": "SchematicsAngularE2eApp",
  4. "title": "Angular e2e Application Options Schema",
  5. "type": "object",
  6. "additionalProperties": false,
  7. "description": "Generates a new, generic end-to-end test definition in the given project.",
  8. "properties": {
  9. "rootSelector": {
  10. "description": "The HTML selector for the root component of the test app.",
  11. "type": "string",
  12. "default": "app-root"
  13. },
  14. "relatedAppName": {
  15. "description": "The name of the application being tested.",
  16. "type": "string"
  17. }
  18. },
  19. "required": ["relatedAppName"]
  20. }