Skip to content

Commit

Permalink
Merge pull request #115 from parthlambdatest/Dot-3601_2
Browse files Browse the repository at this point in the history
[Dot-3601] Version Upgradation to `4.0.1` and changed max value of `scrollTime` to 1000
  • Loading branch information
pinanks authored Aug 12, 2024
2 parents 3b84b08 + 66a4b21 commit baf394b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lambdatest/smartui-cli",
"version": "4.0.0",
"version": "4.0.1",
"description": "A command line interface (CLI) to run SmartUI tests on LambdaTest",
"files": [
"dist/**/*"
Expand Down
6 changes: 3 additions & 3 deletions src/lib/schemaValidation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ const ConfigSchema = {
},
scrollTime: {
type: "number",
minimum: 8,
maximum: 500,
errorMessage: "Invalid config; scrollTime must be > 8 and <= 500"
minimum: 1,
maximum: 1000,
errorMessage: "Invalid config; scrollTime must be > 1 and <= 1000"
},
allowedHostnames: {
type: "array",
Expand Down

0 comments on commit baf394b

Please sign in to comment.