We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fda90f4 commit c13bcbeCopy full SHA for c13bcbe
commands/utils/validate.js
@@ -58,7 +58,7 @@ module.exports = validate_config = function (lt_config, validation_configs) {
58
max_duration == null ||
59
isNaN(max_duration))) {
60
if (Number(max_duration) && Number(max_duration) % 1 !== 0){
61
- reject("Error!! max_duration should be and Integer between 2 and 240 minutes");
+ reject("Error!! max_duration should be an Integer between 2 and 240 minutes");
62
}else if (parseInt(max_duration) <2 || parseInt(max_duration) > 240){
63
reject("Error!! max_duration should be between 2 and 240 minutes");
64
}
0 commit comments