schema.d.ts 312 B

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