diff --git a/test/integration/yaml_suite/yaml_doc.js b/test/integration/yaml_suite/yaml_doc.js index 1935bf4ad..f3a3185bc 100644 --- a/test/integration/yaml_suite/yaml_doc.js +++ b/test/integration/yaml_suite/yaml_doc.js @@ -88,6 +88,10 @@ function versionToComparableString(version, def) { * @return {Boolean} - is the current version within the range (inclusive) */ function rangeMatchesCurrentVersion(rangeString, done) { + if (rangeString === 'all') { + return done(true); + } + if (!ES_VERSION) { getVersionFromES(function () { rangeMatchesCurrentVersion(rangeString, done);