Переглянути джерело

HUE-9084 [frontend] Fix parser test utils exception when there are no keywords

Johan Ahlen 5 роки тому
батько
коміт
3248571896
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      desktop/core/src/desktop/js/jest/sqlTestUtils.js

+ 1 - 1
desktop/core/src/desktop/js/jest/sqlTestUtils.js

@@ -230,7 +230,7 @@ expect.extend({
       deleteKeywords = true;
     }
     if (typeof testDefinition.doesNotContainKeywords !== 'undefined') {
-      const keywords = actualResponse.suggestKeywords;
+      const keywords = actualResponse.suggestKeywords || [];
       let contains = false;
       testDefinition.doesNotContainKeywords.forEach(keyword => {
         if (typeof keywords === 'undefined' || keywords.indexOf(keyword) !== -1) {