From bb8cfa9d0749c6d98532ba160bb49f4b73eaba40 Mon Sep 17 00:00:00 2001 From: Angel Garbarino Date: Fri, 10 Jan 2025 12:43:46 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/secret-engine/configuration-details-test.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ui/tests/integration/components/secret-engine/configuration-details-test.js b/ui/tests/integration/components/secret-engine/configuration-details-test.js index e138f1868393..cde23e23a01e 100644 --- a/ui/tests/integration/components/secret-engine/configuration-details-test.js +++ b/ui/tests/integration/components/secret-engine/configuration-details-test.js @@ -59,12 +59,14 @@ module('Integration | Component | SecretEngine/ConfigurationDetails', function ( .dom(GENERAL.infoRowLabel(key)) .doesNotExist(`${key} on the ${type} config details does NOT exists.`); } else { + // check the label appears + assert.dom(GENERAL.infoRowLabel(key)).exists(`${key} on the ${type} config details exists.`); const responseKeyAndValue = expectedValueOfConfigKeys(type, key); + // check the value appears assert .dom(GENERAL.infoRowValue(key)) .hasText(responseKeyAndValue, `${key} value for the ${type} config details exists.`); - // make sure the ones that should be masked are masked, and others are not. - + // make sure the values that should be masked are masked, and others are not. if (key === 'Public Key') { assert.dom(GENERAL.infoRowValue(key)).hasClass('masked-input', `${key} is masked`); } else {