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.
Added Cypress Test For Super Admin Bounty List
- Loading branch information
1 parent
433633a
commit a3f521b
Showing
1 changed file
with
53 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,53 @@ | ||
describe('Super Admin Bounties List', () => { | ||
let activeUser = 'alice'; | ||
|
||
const bounty: Cypress.Bounty = { | ||
title: 'AliRazaTask', | ||
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 five bounties and verify they are listed in the admin page under different time frames', () => { | ||
for (let i = 1; i <= 5; i++) { | ||
const updatedBounty = { ...bounty, title: `AliRazaTask${i}` }; | ||
cy.create_bounty(updatedBounty); | ||
cy.wait(1000); | ||
} | ||
|
||
cy.visit('http://localhost:3007/admin'); | ||
cy.wait(3000); | ||
|
||
for (let i = 1; i <= 5; i++) { | ||
cy.contains(`AliRazaTask${i}`, { timeout: 10000 }).should('exist'); | ||
} | ||
|
||
cy.get('[data-testid="DropDown"]').click(); | ||
cy.contains('li', '30 Days').click(); | ||
cy.wait(1000); | ||
|
||
for (let i = 1; i <= 5; i++) { | ||
cy.contains(`AliRazaTask${i}`, { timeout: 10000 }).should('exist'); | ||
} | ||
|
||
cy.get('[data-testid="DropDown"]').click(); | ||
cy.contains('li', '90 Days').click(); | ||
cy.wait(1000); | ||
|
||
for (let i = 1; i <= 5; i++) { | ||
cy.contains(`AliRazaTask${i}`, { timeout: 10000 }).should('exist'); | ||
} | ||
|
||
cy.logout(activeUser); | ||
}); | ||
}); |