diff --git a/test/cli/src/suites/customvalidator.suite.yml b/test/cli/src/suites/customvalidator.suite.yml index 368c989..66764cd 100644 --- a/test/cli/src/suites/customvalidator.suite.yml +++ b/test/cli/src/suites/customvalidator.suite.yml @@ -36,9 +36,8 @@ specs: var body = JSON.parse(this.response.body); if (body.key1 !== 'value1') throw new Error("Value of key1 is not value1"); - - if (!this.response.duration || this.response.duration > 25) - throw new Error("Response duration is missing or greater than 25 ms"); + if (!this.response.duration || this.response.duration > 100) + throw new Error("Response duration is missing or greater than 100 ms"); } - name: inline custom validator async function