From cb6f05246fdfb57b9d87850369d541da5484d99b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iulia=20Burc=C4=83?= Date: Fri, 27 Nov 2020 13:23:35 +0200 Subject: [PATCH] Remove e2e as they are not compatible anymore with the live env (#1827) --- e2e/protractor.excludes.json | 2 -- e2e/suites/list-views/empty-list.test.ts | 17 ----------------- 2 files changed, 19 deletions(-) diff --git a/e2e/protractor.excludes.json b/e2e/protractor.excludes.json index 43cdb5199..138fd649e 100644 --- a/e2e/protractor.excludes.json +++ b/e2e/protractor.excludes.json @@ -1,5 +1,3 @@ { - "C280132" : "https://alfresco.atlassian.net/browse/ACA-4167", - "C280093" : "https://alfresco.atlassian.net/browse/ACA-4167", "C269007" : "EXIF aspect missing on latest ACS" } diff --git a/e2e/suites/list-views/empty-list.test.ts b/e2e/suites/list-views/empty-list.test.ts index 31229ddf7..904bd1b7f 100755 --- a/e2e/suites/list-views/empty-list.test.ts +++ b/e2e/suites/list-views/empty-list.test.ts @@ -60,13 +60,6 @@ describe('Empty list views', () => { expect(await dataTable.getEmptyStateSubtitle()).toContain('Favorite a library that you want to find easily later.'); }); - it('[C280132] empty Shared Files', async () => { - await page.clickSharedFiles(); - expect(await dataTable.isEmpty()).toBe(true, 'list is not empty'); - expect(await dataTable.getEmptyStateTitle()).toContain('No shared files or folders'); - expect(await dataTable.getEmptyStateSubtitle()).toContain('Items you share using the Share option are shown here.'); - }); - it('[C213169] empty Recent Files', async () => { await page.clickRecentFiles(); expect(await dataTable.isEmpty()).toBe(true, 'list is not empty'); @@ -139,16 +132,6 @@ describe('Empty list views', () => { expect(await pagination.isNextButtonPresent()).toBe(false, 'Next button is present'); }); - it('[C280093] Shared Files - pagination controls not displayed', async () => { - await page.clickSharedFiles(); - expect(await pagination.isRangePresent()).toBe(false, 'Range is present'); - expect(await pagination.isMaxItemsPresent()).toBe(false, 'Max items is present'); - expect(await pagination.isCurrentPagePresent()).toBe(false, 'Current page is present'); - expect(await pagination.isTotalPagesPresent()).toBe(false, 'Total pages is present'); - expect(await pagination.isPreviousButtonPresent()).toBe(false, 'Previous button is present'); - expect(await pagination.isNextButtonPresent()).toBe(false, 'Next button is present'); - }); - it('[C280120] Trash - pagination controls not displayed', async () => { await page.clickTrash(); expect(await pagination.isRangePresent()).toBe(false, 'Range is present');