Remove e2e as they are not compatible anymore with the live env (#1827)

This commit is contained in:
Iulia Burcă
2020-11-27 13:23:35 +02:00
committed by GitHub
parent 2491e9c421
commit cb6f05246f
2 changed files with 0 additions and 19 deletions

View File

@@ -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"
}

View File

@@ -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');