-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.ui5-testcafe.json
118 lines (118 loc) · 4.9 KB
/
.ui5-testcafe.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/timostark/ui5-testcafe-selector-utils/main/.ui5-testcafe.json",
"title": "UI5 Testcafe",
"description": "A schema for UI5 testcafe",
"type": "object",
"properties": {
"clearCache": {
"description": "Clears cache on startup",
"type": "boolean",
"default": false
},
"cacheResources": {
"description": "Activates Caching of resources",
"type": "boolean",
"default": false
},
"testDataUrl": {
"description": "Allows you to specify a URL to generate and delete test data from the system",
"type": "string",
"default": ""
},
"queryRunnerUrl": {
"description": "Allows you to specify a URL to return the results of a query runner (rest service executing bex queries)",
"type": "string",
"default": ""
},
"testDataDelFunction": {
"description": "Allows you to specify a Function Import to be called inside the test data service to delete test data",
"type": "string",
"default": ""
},
"testDataCreateFunction": {
"description": "Allows you to specify a Function Import to be called inside the test data service to create test data",
"type": "string",
"default": ""
},
"traceSelectorOnFailure": {
"description": "In case of any failed test step the selector (which was present last) will be traced",
"type": "boolean",
"default": false
},
"firstSelectorTimeout": {
"description": "The first UI5 selector timeout can be overwritten. This can be used to increase the timeout for the loading of the app.",
"type": "number",
"default": 60000
},
"tileOpeningTimeout": {
"description": "The first UI5 selector timeout can be overwritten. This can be used to increase the timeout for the loading of the app.",
"type": "number",
"default": 60000
},
"launchpad": {
"description": "Launchpad Configuration",
"type": "object",
"properties": {
"deactivateAnimation": {
"description": "Deactivates UI5 animation after login",
"type": "boolean",
"default": false
}
}
},
"coverage": {
"description": "Coverage Configuration",
"type": "object",
"properties": {
"enabled": {
"description": "Enables Coverage Information",
"type": "boolean",
"default": false
},
"outDir": {
"description": "Directory to generate the coverage report to",
"type": "string",
"default": "./report/coverage"
},
"timeoutIncreaseFactor": {
"description": "Factor to increase all timeouts in case coverage is enabled. This is required, as instrumentation and especially debug sources takes some time",
"type": "number",
"default": 3
},
"log": {
"description": "Logs information about code instrumentation",
"type": "boolean",
"default": false
},
"proxy": {
"description": "Creates a proxy server, which instruments code on the fly. Do only use if you want to use code coverage during e2e tests",
"type": "boolean",
"default": false
},
"basePath": {
"description": "Base path of files to be instrumented",
"type": "string",
"default": ""
},
"type": {
"description": "Output type of coverage report",
"type": "string",
"default": "html"
},
"debugComponents": {
"description": "Components to add to sap-ui-debug URL path, so that they can be instrumented",
"type": "array"
},
"includePaths": {
"description": "Whitelisted include Paths inside the base path",
"type": "array"
},
"excludePaths": {
"description": "Blacklisted exclude Paths inside the base path",
"type": "array"
}
}
}
}
}