UNPKG

318 BTypeScriptView Raw
1/**
2 * Generates a new, generic end-to-end test definition for the given or default project.
3 */
4export 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}