@wdio/shared-store-service 9.22.0 → 9.23.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/build/index.js +2 -2
- package/package.json +5 -5
package/build/index.js
CHANGED
|
@@ -90,7 +90,7 @@ var init_server = __esm({
|
|
|
90
90
|
pool.push(value);
|
|
91
91
|
return res.end();
|
|
92
92
|
});
|
|
93
|
-
app.listen(0, (err) => {
|
|
93
|
+
app.listen(0, "127.0.0.1", (err) => {
|
|
94
94
|
if (err) {
|
|
95
95
|
return reject(err);
|
|
96
96
|
}
|
|
@@ -113,7 +113,7 @@ var headers = {
|
|
|
113
113
|
};
|
|
114
114
|
var isBaseUrlReady = false;
|
|
115
115
|
var setPort = (port) => {
|
|
116
|
-
baseUrlResolve(`http://
|
|
116
|
+
baseUrlResolve(`http://127.0.0.1:${port}`);
|
|
117
117
|
isBaseUrlReady = true;
|
|
118
118
|
};
|
|
119
119
|
var getValue = async (key) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/shared-store-service",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.23.1",
|
|
4
4
|
"description": "A WebdriverIO service to exchange data across processes",
|
|
5
5
|
"author": "Mykola Grybyk <mykola.grybyk@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-shared-store-service",
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@polka/parse": "^1.0.0-next.0",
|
|
40
40
|
"@wdio/logger": "9.18.0",
|
|
41
|
-
"@wdio/types": "9.
|
|
41
|
+
"@wdio/types": "9.23.1",
|
|
42
42
|
"polka": "^0.5.2",
|
|
43
|
-
"webdriverio": "9.
|
|
43
|
+
"webdriverio": "9.23.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@wdio/globals": "9.
|
|
46
|
+
"@wdio/globals": "9.23.0"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "19ac2c1dd86f3bdd967bc6c22c5bcdd78907b988"
|
|
52
52
|
}
|