Skip to content

Commit 893b7cb

Browse files
Merge pull request #105 from LambdaTest/stage
Release Version 1.1.23
2 parents 1c623ce + 11c6e32 commit 893b7cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

commands/utils/validate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function validateTunnel(configFile) {
160160
try {
161161
let config = JSON.parse(fs.readFileSync(configFile));
162162
tunnelConfig = config.tunnel || {};
163-
if (tunnelConfig && tunnelConfig.type != "manual") {
163+
if (tunnelConfig && tunnelConfig.type && tunnelConfig.type != "manual") {
164164
throw new ValidationError('Invalid tunnel type. Accepted type is `manual` only');
165165
}
166166
} catch (error) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambdatest/smartui-storybook",
3-
"version": "1.1.22",
3+
"version": "1.1.23",
44
"description": "LambdaTest's command-line interface (CLI) aimed to help you run your SmartUI tests on LambdaTest platform",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)