@wdio/repl 5.9.4 → 5.12.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 +0 -7
- package/package.json +3 -3
package/build/index.js
CHANGED
|
@@ -41,7 +41,6 @@ class WDIORepl {
|
|
|
41
41
|
_vm.default.createContext(context);
|
|
42
42
|
|
|
43
43
|
this.isCommandRunning = true;
|
|
44
|
-
/* istanbul ignore if */
|
|
45
44
|
|
|
46
45
|
if (_config.hasWdioSyncSupport) {
|
|
47
46
|
return (0, _config.runFnInFiberContext)(() => this._runCmd(cmd, context, callback))();
|
|
@@ -73,9 +72,6 @@ class WDIORepl {
|
|
|
73
72
|
timeout._called = true;
|
|
74
73
|
}, this.config.commandTimeout);
|
|
75
74
|
result.then(res => {
|
|
76
|
-
/**
|
|
77
|
-
* don't do anything if timeout was called
|
|
78
|
-
*/
|
|
79
75
|
if (timeout._called) {
|
|
80
76
|
return;
|
|
81
77
|
}
|
|
@@ -84,9 +80,6 @@ class WDIORepl {
|
|
|
84
80
|
clearTimeout(timeout);
|
|
85
81
|
return callback(null, res);
|
|
86
82
|
}, e => {
|
|
87
|
-
/**
|
|
88
|
-
* don't do anything if timeout was called
|
|
89
|
-
*/
|
|
90
83
|
if (timeout._called) {
|
|
91
84
|
return;
|
|
92
85
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/repl",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.12.1",
|
|
4
4
|
"description": "A WDIO helper utility to provide a repl interface for WebdriverIO",
|
|
5
5
|
"author": "Christian Bromann <christian@saucelabs.com>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/master/packages/wdio-repl",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"url": "https://github.com/webdriverio/webdriverio/issues"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@wdio/config": "^5.
|
|
34
|
+
"@wdio/config": "^5.12.1"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "848151e5fdcb8b694c1a273b9b69852c22875687"
|
|
40
40
|
}
|