@crabnebula/test-runner-backend 0.1.10 → 0.1.11
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 +5 -2
- package/Cargo.toml +3 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[0.1.11]
|
|
4
|
+
|
|
5
|
+
- [`fe7325`](https://github.com/crabnebula-dev/webdriver/commit/fe7325b339c4116195b294c78621738d80fca188) Allow running local binary directly.
|
|
6
|
+
|
|
3
7
|
## \[0.1.10]
|
|
4
8
|
|
|
5
|
-
- [
|
|
9
|
+
- [`c3c059`](https://github.com/crabnebula-dev/webdriver/commit/c3c0590f9f1faead9cec4cb1def6f6e32da97a4b) Fix plain executable usage permission error.
|
|
6
10
|
|
|
7
11
|
## \[0.1.9]
|
|
8
12
|
|
|
9
13
|
- [`c183a50`](https://github.com/crabnebula-dev/webdriver/commit/c183a500befd78da98783b077a4f21539aa7d0ee) Fix error response.
|
|
10
|
-
- [`0af6c79`](https://github.com/crabnebula-dev/webdriver/commit/0af6c79dbdac600e72a4c209492b15f68b95d4ec) Show application logs.
|
|
11
14
|
- [`aa4bee6`](https://github.com/crabnebula-dev/webdriver/commit/aa4bee62734d693b63bfabde8a8ba4045bbd5f9a) ([#49](https://github.com/crabnebula-dev/webdriver/pull/49)) Handle screenshots natively.
|
|
12
15
|
|
|
13
16
|
## \[0.1.7]
|
package/Cargo.toml
CHANGED
|
@@ -7,7 +7,9 @@ version = "0.0.0"
|
|
|
7
7
|
crate-type = ["cdylib"]
|
|
8
8
|
|
|
9
9
|
[dependencies]
|
|
10
|
-
test-runner-backend = { path = "../../crates/test-runner-backend/"
|
|
10
|
+
test-runner-backend = { path = "../../crates/test-runner-backend/", features = [
|
|
11
|
+
"local-runner",
|
|
12
|
+
] }
|
|
11
13
|
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
|
|
12
14
|
napi = { version = "2.12.2", default-features = false, features = [
|
|
13
15
|
"napi4",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crabnebula/test-runner-backend",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"version": "napi version"
|
|
31
31
|
},
|
|
32
32
|
"optionalDependencies": {
|
|
33
|
-
"@crabnebula/test-runner-backend-win32-x64-msvc": "0.1.
|
|
34
|
-
"@crabnebula/test-runner-backend-darwin-x64": "0.1.
|
|
35
|
-
"@crabnebula/test-runner-backend-linux-x64-gnu": "0.1.
|
|
36
|
-
"@crabnebula/test-runner-backend-darwin-arm64": "0.1.
|
|
33
|
+
"@crabnebula/test-runner-backend-win32-x64-msvc": "0.1.11",
|
|
34
|
+
"@crabnebula/test-runner-backend-darwin-x64": "0.1.11",
|
|
35
|
+
"@crabnebula/test-runner-backend-linux-x64-gnu": "0.1.11",
|
|
36
|
+
"@crabnebula/test-runner-backend-darwin-arm64": "0.1.11"
|
|
37
37
|
}
|
|
38
38
|
}
|