schema.d.ts 318 B

12345678910111213
  1. /**
  2. * Generates a new, generic end-to-end test definition for the given or default project.
  3. */
  4. export interface Schema {
  5. /**
  6. * The name of the app being tested.
  7. */
  8. relatedAppName: string;
  9. /**
  10. * The HTML selector for the root component of the test app.
  11. */
  12. rootSelector?: string;
  13. }