mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-5235] Facet fix and improve search test (#6122)
* improve search test * fix * fix * fix * changes * modify * logout public URL * improve stability some e2e * fx lint * fix * fix * improve * fix * improve * fix * fix * fix * fix [skip ci] * fix * some fix [skip ci] * fix * fix lint * fix * fix * fix * fix * fix * fix * fix * fix * fix * convert C291893 in manual test case in testrail * fix * fix
This commit is contained in:
@@ -61,7 +61,7 @@ describe('Document List Component - Properties', () => {
|
||||
|
||||
it('[C299154] Should disallow upload content on a folder row if allowDropFiles is false', async () => {
|
||||
await navigationBar.clickContentServicesButton();
|
||||
await contentServicesPage.doubleClickRow(parentFolder.entry.name);
|
||||
await contentServicesPage.openFolder(parentFolder.entry.name);
|
||||
|
||||
await contentServicesPage.disableDropFilesInAFolder();
|
||||
|
||||
@@ -69,13 +69,13 @@ describe('Document List Component - Properties', () => {
|
||||
|
||||
await DropActions.dropFile(dragAndDropArea, pngFile.location);
|
||||
await contentServicesPage.checkContentIsDisplayed(pngFile.name);
|
||||
await contentServicesPage.doubleClickRow(subFolder.entry.name);
|
||||
await contentServicesPage.openFolder(subFolder.entry.name);
|
||||
await contentServicesPage.checkEmptyFolderTextToBe('This folder is empty');
|
||||
});
|
||||
|
||||
it('[C91319] Should allow upload content on a folder row if allowDropFiles is true', async () => {
|
||||
await navigationBar.clickContentServicesButton();
|
||||
await contentServicesPage.doubleClickRow(parentFolder.entry.name);
|
||||
await contentServicesPage.openFolder(parentFolder.entry.name);
|
||||
|
||||
await contentServicesPage.enableDropFilesInAFolder();
|
||||
|
||||
@@ -84,7 +84,7 @@ describe('Document List Component - Properties', () => {
|
||||
await DropActions.dropFile(dragAndDropArea, pngFile.location);
|
||||
|
||||
await contentServicesPage.checkContentIsNotDisplayed(pngFile.name);
|
||||
await contentServicesPage.doubleClickRow(subFolder.entry.name);
|
||||
await contentServicesPage.openFolder(subFolder.entry.name);
|
||||
await contentServicesPage.checkContentIsDisplayed(pngFile.name);
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user