@itentialopensource/adapter-google_drive 0.4.3 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AUTH.md +29 -19
- package/BROKER.md +31 -19
- package/CALLS.md +59 -22
- package/CHANGELOG.md +16 -0
- package/PROPERTIES.md +5 -0
- package/README.md +60 -63
- package/SYSTEMINFO.md +16 -5
- package/TAB1.md +9 -0
- package/TAB2.md +88 -1424
- package/compliance-report.json +9 -0
- package/compliance-report.txt +5 -0
- package/metadata.json +24 -6
- package/package.json +13 -15
- package/propertiesSchema.json +5 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +4 -4
- package/report/updateReport1718900039618.json +120 -0
- package/sampleProperties.json +37 -25
- package/test/integration/adapterTestIntegration.js +1 -0
- package/test/unit/adapterTestUnit.js +7 -9
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
---------------------------------------------------------------------------------------------
|
|
2
|
+
**** Project Compliance Summary ****
|
|
3
|
+
0 project(s) are not valid
|
|
4
|
+
0 project(s) are valid
|
|
5
|
+
---------------------------------------------------------------------------------------------
|
package/metadata.json
CHANGED
|
@@ -27,20 +27,37 @@
|
|
|
27
27
|
"isDeprecated": false
|
|
28
28
|
},
|
|
29
29
|
"brokerSince": "",
|
|
30
|
+
"authMethods": [
|
|
31
|
+
{
|
|
32
|
+
"type": "Google Token",
|
|
33
|
+
"primary": true
|
|
34
|
+
}
|
|
35
|
+
],
|
|
30
36
|
"documentation": {
|
|
31
37
|
"storeLink": "",
|
|
32
38
|
"npmLink": "https://www.npmjs.com/package/@itentialopensource/adapter-google_drive",
|
|
33
|
-
"repoLink": "https://gitlab.com/itentialopensource/adapters/
|
|
39
|
+
"repoLink": "https://gitlab.com/itentialopensource/adapters/adapter-google_drive",
|
|
34
40
|
"docLink": "https://docs.itential.com/opensource/docs/google-drive",
|
|
35
41
|
"demoLinks": [],
|
|
36
|
-
"trainingLinks": [
|
|
42
|
+
"trainingLinks": [
|
|
43
|
+
{
|
|
44
|
+
"title": "Itential Academy",
|
|
45
|
+
"link": "https://www.itential.com/itential-academy/"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
37
48
|
"faqLink": "https://docs.itential.com/opensource/docs/troubleshooting-an-adapter",
|
|
38
49
|
"contributeLink": "https://gitlab.com/itentialopensource/adapters/contributing-guide",
|
|
39
50
|
"issueLink": "https://itential.atlassian.net/servicedesk/customer/portals",
|
|
40
51
|
"webLink": "https://www.itential.com/adapters/google-drive/",
|
|
41
|
-
"vendorLink": "",
|
|
42
|
-
"productLink": "",
|
|
43
|
-
"apiLinks": [
|
|
52
|
+
"vendorLink": "https://www.google.com/",
|
|
53
|
+
"productLink": "https://www.google.com/drive/",
|
|
54
|
+
"apiLinks": [
|
|
55
|
+
{
|
|
56
|
+
"title": "Google Drive API overview",
|
|
57
|
+
"link": "https://developers.google.com/drive/api/reference/rest/v3",
|
|
58
|
+
"public": true
|
|
59
|
+
}
|
|
60
|
+
]
|
|
44
61
|
},
|
|
45
62
|
"assets": [],
|
|
46
63
|
"relatedItems": {
|
|
@@ -50,5 +67,6 @@
|
|
|
50
67
|
"workflowProjects": [],
|
|
51
68
|
"transformationProjects": [],
|
|
52
69
|
"exampleProjects": []
|
|
53
|
-
}
|
|
70
|
+
},
|
|
71
|
+
"supportLevel": "community"
|
|
54
72
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-google_drive",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "This adapter integrates with system described as: google drive",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"wizardVersion": "2.44.7",
|
|
7
|
-
"engineVersion": "1.67.
|
|
7
|
+
"engineVersion": "1.67.20",
|
|
8
8
|
"adapterType": "http",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"artifactize": "npm i && node utils/packModificationScript.js",
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"test:baseunit": "mocha test/unit/adapterBaseTestUnit.js --LOG=error",
|
|
16
16
|
"test:unit": "mocha test/unit/adapterTestUnit.js --LOG=error",
|
|
17
17
|
"test:integration": "mocha test/integration/adapterTestIntegration.js --LOG=error",
|
|
18
|
-
"test:cover": "nyc --reporter html --reporter text mocha --reporter dot test/*",
|
|
19
18
|
"adapter:patches2bundled": "node utils/patches2bundledDeps.js",
|
|
20
19
|
"test": "npm run test:baseunit && npm run test:unit && npm run test:integration",
|
|
21
20
|
"adapter:install": "npm i && node utils/tbScript.js install",
|
|
@@ -45,34 +44,33 @@
|
|
|
45
44
|
],
|
|
46
45
|
"license": "Apache-2.0",
|
|
47
46
|
"engines": {
|
|
48
|
-
"node": ">=
|
|
47
|
+
"node": ">= 14.0.0",
|
|
49
48
|
"npm": ">= 6.0.0"
|
|
50
49
|
},
|
|
51
50
|
"repository": {
|
|
52
51
|
"type": "git",
|
|
53
|
-
"url": "git@gitlab.com:itentialopensource/adapters/
|
|
52
|
+
"url": "git@gitlab.com:itentialopensource/adapters/adapter-google_drive.git"
|
|
54
53
|
},
|
|
55
54
|
"author": "Itential",
|
|
56
|
-
"homepage": "https://gitlab.com/itentialopensource/adapters/
|
|
55
|
+
"homepage": "https://gitlab.com/itentialopensource/adapters/adapter-google_drive#readme",
|
|
57
56
|
"dependencies": {
|
|
58
|
-
"@itentialopensource/adapter-utils": "^5.
|
|
59
|
-
"acorn": "^8.
|
|
60
|
-
"ajv": "^8.
|
|
61
|
-
"axios": "^1.
|
|
57
|
+
"@itentialopensource/adapter-utils": "^5.6.0",
|
|
58
|
+
"acorn": "^8.12.1",
|
|
59
|
+
"ajv": "^8.17.1",
|
|
60
|
+
"axios": "^1.7.2",
|
|
62
61
|
"commander": "^11.0.0",
|
|
63
62
|
"dns-lookup-promise": "^1.0.4",
|
|
64
|
-
"fs-extra": "^11.
|
|
63
|
+
"fs-extra": "^11.2.0",
|
|
65
64
|
"gtoken": "^5.3.2",
|
|
66
65
|
"json-query": "^2.2.2",
|
|
67
|
-
"mocha": "^10.
|
|
66
|
+
"mocha": "^10.7.0",
|
|
68
67
|
"mocha-param": "^2.0.1",
|
|
69
68
|
"mongodb": "^4.16.0",
|
|
70
|
-
"nyc": "^15.1.0",
|
|
71
69
|
"ping": "^0.4.4",
|
|
72
70
|
"prompts": "^2.4.2",
|
|
73
71
|
"readline-sync": "^1.4.10",
|
|
74
|
-
"semver": "^7.
|
|
75
|
-
"winston": "^3.
|
|
72
|
+
"semver": "^7.6.3",
|
|
73
|
+
"winston": "^3.13.1"
|
|
76
74
|
},
|
|
77
75
|
"devDependencies": {
|
|
78
76
|
"chai": "^4.3.7",
|
package/propertiesSchema.json
CHANGED
|
@@ -945,6 +945,11 @@
|
|
|
945
945
|
"devicebroker": {
|
|
946
946
|
"type": "object",
|
|
947
947
|
"properties": {
|
|
948
|
+
"enabled": {
|
|
949
|
+
"type": "boolean",
|
|
950
|
+
"description": "Whether or not the device broker calls have been mapped",
|
|
951
|
+
"default": false
|
|
952
|
+
},
|
|
948
953
|
"getDevice": {
|
|
949
954
|
"type": "array",
|
|
950
955
|
"description": "Broker call(s) to getDevice",
|
|
Binary file
|
package/report/adapterInfo.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.3
|
|
3
|
-
"configLines":
|
|
2
|
+
"version": "0.4.3",
|
|
3
|
+
"configLines": 13248,
|
|
4
4
|
"scriptLines": 1783,
|
|
5
5
|
"codeLines": 6688,
|
|
6
|
-
"testLines":
|
|
6
|
+
"testLines": 6975,
|
|
7
7
|
"testCases": 294,
|
|
8
|
-
"totalCodeLines":
|
|
8
|
+
"totalCodeLines": 15446,
|
|
9
9
|
"wfTasks": 71
|
|
10
10
|
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"errors": [],
|
|
3
|
+
"statistics": [
|
|
4
|
+
{
|
|
5
|
+
"owner": "errorJson",
|
|
6
|
+
"description": "New adapter errors available for use",
|
|
7
|
+
"value": 0
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"owner": "errorJson",
|
|
11
|
+
"description": "Adapter errors no longer available for use",
|
|
12
|
+
"value": 0
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"owner": "errorJson",
|
|
16
|
+
"description": "Adapter errors that have been updated (e.g. recommendation changes)",
|
|
17
|
+
"value": 31
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"owner": "packageJson",
|
|
21
|
+
"description": "Number of production dependencies",
|
|
22
|
+
"value": 16
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"owner": "packageJson",
|
|
26
|
+
"description": "Number of development dependencies",
|
|
27
|
+
"value": 6
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"owner": "packageJson",
|
|
31
|
+
"description": "Number of npm scripts",
|
|
32
|
+
"value": 21
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"owner": "packageJson",
|
|
36
|
+
"description": "Runtime Library dependency",
|
|
37
|
+
"value": "^5.5.0"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"owner": "propertiesSchemaJson",
|
|
41
|
+
"description": "Adapter properties defined in the propertiesSchema file",
|
|
42
|
+
"value": 78
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"owner": "markdown",
|
|
46
|
+
"description": "Number of lines in the README.md",
|
|
47
|
+
"value": 344
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"owner": "markdown",
|
|
51
|
+
"description": "Number of lines in the SUMMARY.md",
|
|
52
|
+
"value": 9
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"owner": "markdown",
|
|
56
|
+
"description": "Number of lines in the PROPERTIES.md",
|
|
57
|
+
"value": 647
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"owner": "markdown",
|
|
61
|
+
"description": "Number of lines in the TROUBLESHOOT.md",
|
|
62
|
+
"value": 48
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"owner": "markdown",
|
|
66
|
+
"description": "Number of lines in the ENHANCE.md",
|
|
67
|
+
"value": 70
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"owner": "markdown",
|
|
71
|
+
"description": "Number of lines in the BROKER.md",
|
|
72
|
+
"value": 70
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"owner": "unitTestJS",
|
|
76
|
+
"description": "Number of lines of code in unit tests",
|
|
77
|
+
"value": 2994
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"owner": "unitTestJS",
|
|
81
|
+
"description": "Number of unit tests",
|
|
82
|
+
"value": 169
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"owner": "integrationTestJS",
|
|
86
|
+
"description": "Number of lines of code in integration tests",
|
|
87
|
+
"value": 2729
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"owner": "integrationTestJS",
|
|
91
|
+
"description": "Number of integration tests",
|
|
92
|
+
"value": 55
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"owner": "staticFile",
|
|
96
|
+
"description": "Number of lines of code in adapterBase.js",
|
|
97
|
+
"value": 1453
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"owner": "staticFile",
|
|
101
|
+
"description": "Number of static files added",
|
|
102
|
+
"value": 36
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"owner": "Overall",
|
|
106
|
+
"description": "Total lines of Code",
|
|
107
|
+
"value": 7176
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"owner": "Overall",
|
|
111
|
+
"description": "Total Tests",
|
|
112
|
+
"value": 224
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"owner": "Overall",
|
|
116
|
+
"description": "Total Files",
|
|
117
|
+
"value": 6
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
}
|
package/sampleProperties.json
CHANGED
|
@@ -132,30 +132,32 @@
|
|
|
132
132
|
}
|
|
133
133
|
},
|
|
134
134
|
"devicebroker": {
|
|
135
|
+
"enabled": false,
|
|
135
136
|
"getDevice": [
|
|
136
137
|
{
|
|
137
|
-
"path": "/
|
|
138
|
+
"path": "/not/mapped",
|
|
138
139
|
"method": "GET",
|
|
139
140
|
"query": {},
|
|
140
141
|
"body": {},
|
|
141
142
|
"headers": {},
|
|
142
143
|
"handleFailure": "ignore",
|
|
143
144
|
"requestFields": {
|
|
144
|
-
"
|
|
145
|
+
"insample": "{port}"
|
|
145
146
|
},
|
|
146
147
|
"responseDatakey": "",
|
|
147
148
|
"responseFields": {
|
|
148
|
-
"name": "
|
|
149
|
-
"ostype": "
|
|
150
|
-
"ostypePrefix": "
|
|
151
|
-
"
|
|
152
|
-
"
|
|
149
|
+
"name": "{this}{||}{that}",
|
|
150
|
+
"ostype": "{osfield}",
|
|
151
|
+
"ostypePrefix": "meraki-",
|
|
152
|
+
"port": "{port}",
|
|
153
|
+
"ipaddress": "{ip_addr}",
|
|
154
|
+
"serial": "{serial}"
|
|
153
155
|
}
|
|
154
156
|
}
|
|
155
157
|
],
|
|
156
158
|
"getDevicesFiltered": [
|
|
157
159
|
{
|
|
158
|
-
"path": "/
|
|
160
|
+
"path": "/not/mapped",
|
|
159
161
|
"method": "GET",
|
|
160
162
|
"pagination": {
|
|
161
163
|
"offsetVar": "",
|
|
@@ -170,42 +172,44 @@
|
|
|
170
172
|
"requestFields": {},
|
|
171
173
|
"responseDatakey": "",
|
|
172
174
|
"responseFields": {
|
|
173
|
-
"name": "
|
|
174
|
-
"ostype": "
|
|
175
|
-
"ostypePrefix": "
|
|
176
|
-
"
|
|
177
|
-
"
|
|
175
|
+
"name": "{this}{||}{that}",
|
|
176
|
+
"ostype": "{osfield}",
|
|
177
|
+
"ostypePrefix": "meraki-",
|
|
178
|
+
"port": "{port}",
|
|
179
|
+
"ipaddress": "{ip_addr}",
|
|
180
|
+
"serial": "{serial}",
|
|
181
|
+
"id": "{myid}"
|
|
178
182
|
}
|
|
179
183
|
}
|
|
180
184
|
],
|
|
181
185
|
"isAlive": [
|
|
182
186
|
{
|
|
183
|
-
"path": "/
|
|
187
|
+
"path": "/not/mapped/{devID}",
|
|
184
188
|
"method": "GET",
|
|
185
189
|
"query": {},
|
|
186
190
|
"body": {},
|
|
187
191
|
"headers": {},
|
|
188
192
|
"handleFailure": "ignore",
|
|
189
193
|
"requestFields": {
|
|
190
|
-
"
|
|
194
|
+
"devID": "{id}"
|
|
191
195
|
},
|
|
192
196
|
"responseDatakey": "",
|
|
193
197
|
"responseFields": {
|
|
194
|
-
"status": "
|
|
195
|
-
"statusValue": "
|
|
198
|
+
"status": "return2xx",
|
|
199
|
+
"statusValue": "AD.200"
|
|
196
200
|
}
|
|
197
201
|
}
|
|
198
202
|
],
|
|
199
203
|
"getConfig": [
|
|
200
204
|
{
|
|
201
|
-
"path": "/
|
|
205
|
+
"path": "/not/mapped/{devID}",
|
|
202
206
|
"method": "GET",
|
|
203
207
|
"query": {},
|
|
204
208
|
"body": {},
|
|
205
209
|
"headers": {},
|
|
206
210
|
"handleFailure": "ignore",
|
|
207
211
|
"requestFields": {
|
|
208
|
-
"
|
|
212
|
+
"devID": "{id}"
|
|
209
213
|
},
|
|
210
214
|
"responseDatakey": "",
|
|
211
215
|
"responseFields": {}
|
|
@@ -213,7 +217,7 @@
|
|
|
213
217
|
],
|
|
214
218
|
"getCount": [
|
|
215
219
|
{
|
|
216
|
-
"path": "/
|
|
220
|
+
"path": "/not/mapped",
|
|
217
221
|
"method": "GET",
|
|
218
222
|
"query": {},
|
|
219
223
|
"body": {},
|
|
@@ -229,15 +233,15 @@
|
|
|
229
233
|
"enabled": false,
|
|
230
234
|
"entities": [
|
|
231
235
|
{
|
|
232
|
-
"entityType": "",
|
|
233
|
-
"frequency":
|
|
236
|
+
"entityType": "device",
|
|
237
|
+
"frequency": 3600,
|
|
234
238
|
"flushOnFail": false,
|
|
235
|
-
"limit":
|
|
239
|
+
"limit": 10000,
|
|
236
240
|
"retryAttempts": 5,
|
|
237
241
|
"sort": true,
|
|
238
242
|
"populate": [
|
|
239
243
|
{
|
|
240
|
-
"path": "",
|
|
244
|
+
"path": "/not/mapped",
|
|
241
245
|
"method": "GET",
|
|
242
246
|
"pagination": {
|
|
243
247
|
"offsetVar": "",
|
|
@@ -251,7 +255,15 @@
|
|
|
251
255
|
"handleFailure": "ignore",
|
|
252
256
|
"requestFields": {},
|
|
253
257
|
"responseDatakey": "",
|
|
254
|
-
"responseFields": {
|
|
258
|
+
"responseFields": {
|
|
259
|
+
"name": "{this}{||}{that}",
|
|
260
|
+
"ostype": "{osfield}",
|
|
261
|
+
"ostypePrefix": "meraki-",
|
|
262
|
+
"port": "{port}",
|
|
263
|
+
"ipaddress": "{ip_addr}",
|
|
264
|
+
"serial": "{serial}",
|
|
265
|
+
"id": "{myid}"
|
|
266
|
+
}
|
|
255
267
|
}
|
|
256
268
|
],
|
|
257
269
|
"cachedTasks": [
|
|
@@ -46,6 +46,7 @@ samProps.ssl.accept_invalid_cert = false;
|
|
|
46
46
|
if (samProps.request.attempt_timeout < 30000) {
|
|
47
47
|
samProps.request.attempt_timeout = 30000;
|
|
48
48
|
}
|
|
49
|
+
samProps.devicebroker.enabled = true;
|
|
49
50
|
const attemptTimeout = samProps.request.attempt_timeout;
|
|
50
51
|
const { stub } = samProps;
|
|
51
52
|
|
|
@@ -284,7 +284,6 @@ describe('[unit] Google_drive Adapter Test', () => {
|
|
|
284
284
|
assert.equal('mocha test/unit/adapterBaseTestUnit.js --LOG=error', packageDotJson.scripts['test:baseunit']);
|
|
285
285
|
assert.equal('mocha test/unit/adapterTestUnit.js --LOG=error', packageDotJson.scripts['test:unit']);
|
|
286
286
|
assert.equal('mocha test/integration/adapterTestIntegration.js --LOG=error', packageDotJson.scripts['test:integration']);
|
|
287
|
-
assert.equal('nyc --reporter html --reporter text mocha --reporter dot test/*', packageDotJson.scripts['test:cover']);
|
|
288
287
|
assert.equal('npm run test:baseunit && npm run test:unit && npm run test:integration', packageDotJson.scripts.test);
|
|
289
288
|
assert.equal('npm publish --registry=https://registry.npmjs.org --access=public', packageDotJson.scripts.deploy);
|
|
290
289
|
assert.equal('npm run deploy', packageDotJson.scripts.build);
|
|
@@ -315,17 +314,16 @@ describe('[unit] Google_drive Adapter Test', () => {
|
|
|
315
314
|
assert.notEqual(undefined, packageDotJson.dependencies);
|
|
316
315
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
317
316
|
assert.notEqual('', packageDotJson.dependencies);
|
|
318
|
-
assert.equal('^8.
|
|
319
|
-
assert.equal('^1.
|
|
317
|
+
assert.equal('^8.17.1', packageDotJson.dependencies.ajv);
|
|
318
|
+
assert.equal('^1.7.2', packageDotJson.dependencies.axios);
|
|
320
319
|
assert.equal('^11.0.0', packageDotJson.dependencies.commander);
|
|
321
|
-
assert.equal('^11.
|
|
322
|
-
assert.equal('^10.
|
|
320
|
+
assert.equal('^11.2.0', packageDotJson.dependencies['fs-extra']);
|
|
321
|
+
assert.equal('^10.7.0', packageDotJson.dependencies.mocha);
|
|
323
322
|
assert.equal('^2.0.1', packageDotJson.dependencies['mocha-param']);
|
|
324
|
-
assert.equal('^15.1.0', packageDotJson.dependencies.nyc);
|
|
325
323
|
assert.equal('^0.4.4', packageDotJson.dependencies.ping);
|
|
326
324
|
assert.equal('^1.4.10', packageDotJson.dependencies['readline-sync']);
|
|
327
|
-
assert.equal('^7.
|
|
328
|
-
assert.equal('^3.
|
|
325
|
+
assert.equal('^7.6.3', packageDotJson.dependencies.semver);
|
|
326
|
+
assert.equal('^3.13.1', packageDotJson.dependencies.winston);
|
|
329
327
|
done();
|
|
330
328
|
} catch (error) {
|
|
331
329
|
log.error(`Test Failure: ${error}`);
|
|
@@ -563,7 +561,7 @@ describe('[unit] Google_drive Adapter Test', () => {
|
|
|
563
561
|
log.error(`Adapter Exception: ${error}`);
|
|
564
562
|
done(error);
|
|
565
563
|
}
|
|
566
|
-
});
|
|
564
|
+
}).timeout(attemptTimeout);
|
|
567
565
|
});
|
|
568
566
|
|
|
569
567
|
describe('propertiesSchema.json', () => {
|