@appium/fake-driver 5.7.1 → 5.7.3
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/build/lib/driver.d.ts +2 -2
- package/build/lib/driver.js +1 -1
- package/lib/driver.js +1 -1
- package/package.json +4 -4
package/build/lib/driver.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ declare const FakeDriver_base_2: typeof BaseDriver;
|
|
|
4
4
|
declare const FakeDriver_base_3: typeof BaseDriver;
|
|
5
5
|
declare const FakeDriver_base_4: typeof BaseDriver;
|
|
6
6
|
/**
|
|
7
|
-
* Constraints for {@linkcode FakeDriver}'s
|
|
7
|
+
* Constraints for {@linkcode FakeDriver}'s capabilities
|
|
8
8
|
* @typedef {typeof FAKE_DRIVER_CONSTRAINTS} FakeDriverConstraints
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
@@ -209,7 +209,7 @@ export class FakeDriver<Thing = any> extends BaseDriver<{
|
|
|
209
209
|
}
|
|
210
210
|
export default FakeDriver;
|
|
211
211
|
/**
|
|
212
|
-
* Constraints for {@linkcode FakeDriver}'s
|
|
212
|
+
* Constraints for {@linkcode FakeDriver}'s capabilities
|
|
213
213
|
*/
|
|
214
214
|
export type FakeDriverConstraints = typeof FAKE_DRIVER_CONSTRAINTS;
|
|
215
215
|
export type FakeDriverCaps = import("./types").FakeDriverCaps;
|
package/build/lib/driver.js
CHANGED
|
@@ -20,7 +20,7 @@ const FAKE_DRIVER_CONSTRAINTS = /** @type {const} */ ({
|
|
|
20
20
|
},
|
|
21
21
|
});
|
|
22
22
|
/**
|
|
23
|
-
* Constraints for {@linkcode FakeDriver}'s
|
|
23
|
+
* Constraints for {@linkcode FakeDriver}'s capabilities
|
|
24
24
|
* @typedef {typeof FAKE_DRIVER_CONSTRAINTS} FakeDriverConstraints
|
|
25
25
|
*/
|
|
26
26
|
/**
|
package/lib/driver.js
CHANGED
|
@@ -16,7 +16,7 @@ const FAKE_DRIVER_CONSTRAINTS = /** @type {const} */ ({
|
|
|
16
16
|
});
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
|
-
* Constraints for {@linkcode FakeDriver}'s
|
|
19
|
+
* Constraints for {@linkcode FakeDriver}'s capabilities
|
|
20
20
|
* @typedef {typeof FAKE_DRIVER_CONSTRAINTS} FakeDriverConstraints
|
|
21
21
|
*/
|
|
22
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appium/fake-driver",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.3",
|
|
4
4
|
"description": "Mock driver used internally by Appium for testing. Ignore",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"automation",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"test:unit": "mocha --timeout 10s --slow 5s \"./test/unit/**/*.spec.js\""
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@xmldom/xmldom": "0.9.
|
|
45
|
+
"@xmldom/xmldom": "0.9.8",
|
|
46
46
|
"asyncbox": "3.0.0",
|
|
47
47
|
"bluebird": "3.7.2",
|
|
48
48
|
"lodash": "4.17.21",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"xpath": "0.0.34"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"appium": "^2.4.1"
|
|
53
|
+
"appium": "^2.4.1 || ^3.0.0-beta.0"
|
|
54
54
|
},
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
},
|
|
83
83
|
"main": "./build/lib/index.js",
|
|
84
84
|
"types": "./build/lib/index.d.ts",
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "c8fe4412525f7e1fa237813cf83fe7d98f0125eb"
|
|
86
86
|
}
|