-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathschema.d.ts
52 lines (52 loc) · 1.24 KB
/
schema.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
* Protractor target options for Build Facade.
*/
export interface Schema {
/**
* Base URL for protractor to connect to.
*/
baseUrl?: string;
/**
* Dev server target to run tests against.
*/
devServerTarget?: string;
/**
* Start Protractor's Element Explorer for debugging.
* @deprecated This option has no effect. See:
* https://github.com/angular/protractor/blob/master/docs/debugging.md#enabled-control-flow
* for alternative methods.
*/
elementExplorer?: boolean;
/**
* Execute specs whose names match the pattern, which is internally compiled to a RegExp.
*/
grep?: string;
/**
* Host to listen on.
*/
host?: string;
/**
* Invert the selection specified by the 'grep' option.
*/
invertGrep?: boolean;
/**
* The port to use to serve the application.
*/
port?: number;
/**
* The name of the Protractor configuration file.
*/
protractorConfig: string;
/**
* Override specs in the protractor config.
*/
specs?: string[];
/**
* Override suite in the protractor config.
*/
suite?: string;
/**
* Try to update webdriver.
*/
webdriverUpdate?: boolean;
}