forked from stakwork/sphinx-tribes-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request stakwork#483 from AbdulWahab3181/Cypress-Admin-Pag…
…ination-Test [Test][cypress] [Super Admin] Bounty Pagination Number Click
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
describe('Super Admin Pagination Bounties List', () => { | ||
let activeUser = 'alice'; | ||
|
||
const bounty: Cypress.Bounty = { | ||
title: 'Pagination Bounty', | ||
category: 'Web development', | ||
coding_language: ['Typescript', 'Javascript', 'Lightning'], | ||
description: 'This is available', | ||
amount: '123', | ||
tribe: 'Amazing Org Tribe', | ||
estimate_session_length: 'Less than 3 hour', | ||
estimate_completion_date: '09/09/2024', | ||
deliverables: 'We are good to go man' | ||
}; | ||
|
||
beforeEach(() => { | ||
cy.login(activeUser); | ||
cy.wait(1000); | ||
}); | ||
|
||
it('Should create 22 bounties and verify they are listed in the admin page', () => { | ||
for (let i = 1; i <= 22; i++) { | ||
const updatedBounty = { ...bounty, title: `Pagination Bounty ${i}` }; | ||
cy.create_bounty(updatedBounty); | ||
cy.wait(1000); | ||
} | ||
|
||
cy.visit('http://localhost:3007/admin'); | ||
cy.wait(3000); | ||
|
||
for (let i = 22; i <= 3; i--) { | ||
cy.contains(`Pagination Bounty ${i}`, { timeout: 10000 }).should('exist'); | ||
} | ||
|
||
cy.contains(/^2$/).click(); | ||
cy.wait(1000); | ||
|
||
for (let i = 2; i <= 1; i--) { | ||
cy.contains(`Pagination Bounty ${i}`, { timeout: 10000 }).should('exist'); | ||
} | ||
|
||
cy.logout(activeUser); | ||
}); | ||
}); |