appium-webdriveragent 15.1.3 → 15.1.4
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/CHANGELOG.md +6 -0
- package/WebDriverAgentLib/Info.plist +2 -2
- package/package.json +3 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [15.1.4](https://github.com/appium/WebDriverAgent/compare/v15.1.3...v15.1.4) (2026-07-07)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* Drop mocha and chai ([#1169](https://github.com/appium/WebDriverAgent/issues/1169)) ([11ba27c](https://github.com/appium/WebDriverAgent/commit/11ba27c71a38d7a8f4882ea70716541b3679e67f))
|
|
6
|
+
|
|
1
7
|
## [15.1.3](https://github.com/appium/WebDriverAgent/compare/v15.1.2...v15.1.3) (2026-07-01)
|
|
2
8
|
|
|
3
9
|
### Miscellaneous Chores
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
<key>CFBundlePackageType</key>
|
|
16
16
|
<string>FMWK</string>
|
|
17
17
|
<key>CFBundleShortVersionString</key>
|
|
18
|
-
<string>15.1.
|
|
18
|
+
<string>15.1.4</string>
|
|
19
19
|
<key>CFBundleSignature</key>
|
|
20
20
|
<string>????</string>
|
|
21
21
|
<key>CFBundleVersion</key>
|
|
22
|
-
<string>15.1.
|
|
22
|
+
<string>15.1.4</string>
|
|
23
23
|
<key>NSPrincipalClass</key>
|
|
24
24
|
<string/>
|
|
25
25
|
</dict>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-webdriveragent",
|
|
3
|
-
"version": "15.1.
|
|
3
|
+
"version": "15.1.4",
|
|
4
4
|
"description": "Package bundling WebDriverAgent",
|
|
5
5
|
"main": "./build/lib/index.js",
|
|
6
6
|
"types": "./build/lib/index.d.ts",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"format:check": "prettier --check ./lib ./test",
|
|
15
15
|
"prepare": "npm run build",
|
|
16
16
|
"version": "npm run sync-wda-version",
|
|
17
|
-
"test": "
|
|
18
|
-
"e2e-test": "
|
|
17
|
+
"test": "node --test --test-timeout=60000 \"./build/test/unit/**/*.spec.js\"",
|
|
18
|
+
"e2e-test": "node --test --test-force-exit --test-concurrency=1 --test-timeout=600000 \"./build/test/functional/**/*.spec.js\"",
|
|
19
19
|
"bundle": "npm run bundle:ios && npm run bundle:tv",
|
|
20
20
|
"bundle:ios": "TARGET=runner SDK=sim node ./Scripts/build-webdriveragent.mjs",
|
|
21
21
|
"bundle:tv": "TARGET=tv_runner SDK=tv_sim node ./Scripts/build-webdriveragent.mjs",
|
|
@@ -55,22 +55,15 @@
|
|
|
55
55
|
"@semantic-release/changelog": "^6.0.1",
|
|
56
56
|
"@semantic-release/git": "^10.0.1",
|
|
57
57
|
"@types/async-lock": "^1.4.2",
|
|
58
|
-
"@types/chai": "^5.2.3",
|
|
59
|
-
"@types/chai-as-promised": "^8.0.2",
|
|
60
|
-
"@types/mocha": "^10.0.1",
|
|
61
58
|
"@types/node": "^26.0.0",
|
|
62
59
|
"@types/sinon": "^22.0.0",
|
|
63
60
|
"appium-xcode": "^6.0.0",
|
|
64
|
-
"chai": "^6.0.0",
|
|
65
|
-
"chai-as-promised": "^8.0.0",
|
|
66
61
|
"conventional-changelog-conventionalcommits": "^9.3.1",
|
|
67
|
-
"mocha": "^11.0.1",
|
|
68
62
|
"node-simctl": "^8.0.0",
|
|
69
63
|
"prettier": "^3.9.3",
|
|
70
64
|
"semantic-release": "^25.0.2",
|
|
71
65
|
"semver": "^7.3.7",
|
|
72
66
|
"sinon": "^22.0.0",
|
|
73
|
-
"ts-node": "^10.9.1",
|
|
74
67
|
"typescript": "^6.0.2"
|
|
75
68
|
},
|
|
76
69
|
"dependencies": {
|