From 814bd46d5b0ea325005d904cb22f5305e8b1b4b8 Mon Sep 17 00:00:00 2001 From: Eugenio Romano Date: Wed, 20 Mar 2019 02:10:24 +0000 Subject: [PATCH] fix aspect test --- e2e/core/card-view/aspect-oriented-config.e2e.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/e2e/core/card-view/aspect-oriented-config.e2e.ts b/e2e/core/card-view/aspect-oriented-config.e2e.ts index 56471cfb53..1ed8740e8e 100644 --- a/e2e/core/card-view/aspect-oriented-config.e2e.ts +++ b/e2e/core/card-view/aspect-oriented-config.e2e.ts @@ -188,7 +188,6 @@ describe('Aspect oriented config', () => { metadataViewPage.checkMetadataGroupIsPresent('EXIF'); metadataViewPage.checkMetadataGroupIsPresent('properties'); metadataViewPage.checkMetadataGroupIsPresent('Versionable'); - metadataViewPage.checkMetadataGroupIsPresent('Thumbnail Modification Data'); }); it('[C260182] Should show all the aspects if the default configuration contains the star symbol', () => { @@ -214,7 +213,6 @@ describe('Aspect oriented config', () => { metadataViewPage.checkMetadataGroupIsPresent('EXIF'); metadataViewPage.checkMetadataGroupIsPresent('properties'); metadataViewPage.checkMetadataGroupIsPresent('Versionable'); - metadataViewPage.checkMetadataGroupIsPresent('Thumbnail Modification Data'); }); it('[C268899] Should be possible use a Translation key as Title of a metadata group', () => { @@ -321,7 +319,7 @@ describe('Aspect oriented config', () => { metadataViewPage.checkMetadataGroupIsNotPresent(emptyAspectName); }); - it('[C279968] The aspect with empty properties is displayed', () => { + it('[C299187] The aspect with empty properties is displayed when edit', () => { configEditorPage.enterBigConfigurationText('{' + ' "presets": { "' + defaultModel + @@ -343,6 +341,10 @@ describe('Aspect oriented config', () => { metadataViewPage.informationButtonIsDisplayed(); metadataViewPage.clickOnInformationButton(); + metadataViewPage.checkMetadataGroupIsNotPresent(aspectName); + + metadataViewPage.editIconClick(); + metadataViewPage.checkMetadataGroupIsPresent(aspectName); }); });