schema.json 639 B

12345678910111213141516171819202122
  1. {
  2. "$schema": "http://json-schema.org/schema",
  3. "id": "SchematicsAngularE2eApp",
  4. "title": "Angular e2e Application Options Schema",
  5. "type": "object",
  6. "description": "Generates a new, generic end-to-end test definition for the given or default project.",
  7. "long-description": "e2e-long.md",
  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 app being tested.",
  16. "type": "string"
  17. }
  18. },
  19. "required": [
  20. "relatedAppName"
  21. ]
  22. }