diff --git a/__tests__/users/user-management-home-screen.test.js b/__tests__/users/user-management-home-screen.test.js index 66f7b60c..f50242eb 100644 --- a/__tests__/users/user-management-home-screen.test.js +++ b/__tests__/users/user-management-home-screen.test.js @@ -9,9 +9,6 @@ describe('Tests the User Management User Listing Screen', () => { let tileViewBtn; let tableViewBtn; let userSearchElement; - let paginationElement; - let prevBtn; - let nextBtn; jest.setTimeout(60000); beforeAll(async () => { @@ -71,9 +68,6 @@ describe('Tests the User Management User Listing Screen', () => { tileViewBtn = await page.$('#tile-view-btn'); tableViewBtn = await page.$('#table-view-btn'); userSearchElement = await page.$('#user-search'); - paginationElement = await page.$('#pagination'); - prevBtn = await page.$('#prevButton'); - nextBtn = await page.$('#nextButton'); }); afterAll(async () => { @@ -85,9 +79,6 @@ describe('Tests the User Management User Listing Screen', () => { expect(tileViewBtn).toBeTruthy(); expect(tableViewBtn).toBeTruthy(); expect(userSearchElement).toBeTruthy(); - expect(paginationElement).toBeTruthy(); - expect(prevBtn).toBeTruthy(); - expect(nextBtn).toBeTruthy(); }); it('Check the UI interactions of tile view and table view button.', async () => { diff --git a/users/constants.js b/users/constants.js index 78d86831..bf003d1b 100644 --- a/users/constants.js +++ b/users/constants.js @@ -8,9 +8,6 @@ const TILE_VIEW_BTN = 'tile-view-btn'; const TABLE_VIEW_BTN = 'table-view-btn'; const USER_SEARCH_ELEMENT = 'user-search'; const DEFAULT_AVATAR = '/images/avatar.png'; -const PAGINATION_ELEMENT = 'pagination'; -const PREV_BUTTON = 'prevButton'; -const NEXT_BUTTON = 'nextButton'; const USER_FETCH_COUNT = 100; const NONE = 'NONE'; const OOO = 'OOO'; diff --git a/users/index.html b/users/index.html index 5bae7582..b1e65323 100644 --- a/users/index.html +++ b/users/index.html @@ -72,10 +72,6 @@

Skills

-