@lambdatest/smartui-cli 4.1.22 → 4.1.24
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/dist/index.cjs +6 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1923,7 +1923,7 @@ var authExec_default = (ctx) => {
|
|
|
1923
1923
|
};
|
|
1924
1924
|
|
|
1925
1925
|
// package.json
|
|
1926
|
-
var version = "4.1.
|
|
1926
|
+
var version = "4.1.24";
|
|
1927
1927
|
var package_default = {
|
|
1928
1928
|
name: "@lambdatest/smartui-cli",
|
|
1929
1929
|
version,
|
|
@@ -5295,6 +5295,8 @@ command6.name("exec:ping").description("Ping the SmartUI server to check if it i
|
|
|
5295
5295
|
console.error(chalk__default.default.red("Error: SmartUI server did not respond in 15 seconds"));
|
|
5296
5296
|
} else {
|
|
5297
5297
|
console.error(chalk__default.default.red("SmartUI server is not running"));
|
|
5298
|
+
console.error(chalk__default.default.red(`Error: ${error == null ? void 0 : error.code}`));
|
|
5299
|
+
console.error(error);
|
|
5298
5300
|
}
|
|
5299
5301
|
}
|
|
5300
5302
|
});
|
|
@@ -5552,6 +5554,7 @@ function makeHttpRequest(url, timeout) {
|
|
|
5552
5554
|
});
|
|
5553
5555
|
});
|
|
5554
5556
|
req.on("error", (error) => {
|
|
5557
|
+
console.error(error);
|
|
5555
5558
|
reject(error);
|
|
5556
5559
|
});
|
|
5557
5560
|
req.on("timeout", () => {
|
|
@@ -5582,6 +5585,8 @@ command9.name("exec:pingTest").description("Ping the SmartUI server to check if
|
|
|
5582
5585
|
console.error(chalk__default.default.red("Error: SmartUI server did not respond in 15 seconds"));
|
|
5583
5586
|
} else {
|
|
5584
5587
|
console.error(chalk__default.default.red("SmartUI server is not running"));
|
|
5588
|
+
console.error(chalk__default.default.red(`Error: ${error == null ? void 0 : error.code}`));
|
|
5589
|
+
console.error(error);
|
|
5585
5590
|
}
|
|
5586
5591
|
}
|
|
5587
5592
|
});
|