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.
cypress unit test for view assigned bounties to a user
- Loading branch information
1 parent
3ca1daa
commit 3614b4f
Showing
1 changed file
with
48 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,48 @@ | ||
describe('View User Assigned Bounties', () => { | ||
let activeUser = 'carol'; | ||
|
||
const bounty: Cypress.Bounty = { | ||
title: 'Syed 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', | ||
assign: 'alice' | ||
}; | ||
|
||
beforeEach(() => { | ||
cy.login(activeUser); | ||
cy.wait(1000); | ||
}); | ||
|
||
it('Should create three bounties and assigned to a user', () => { | ||
for (let i = 1; i <= 3; i++) { | ||
const updatedBounty = { ...bounty, title: `Syed Bounty${i}` }; | ||
cy.create_bounty(updatedBounty); | ||
cy.wait(1000); | ||
} | ||
|
||
cy.visit('http://localhost:3007/p'); | ||
cy.wait(1000); | ||
|
||
cy.get('input').type('alice'); | ||
cy.wait(1000); | ||
|
||
cy.contains('alice').click(); | ||
cy.wait(1000); | ||
|
||
cy.contains('Assigned Bounties').click(); | ||
cy.wait(1000); | ||
|
||
for (let i = 1; i <= 3; i++) { | ||
cy.contains(`Syed Bounty${i}`, { timeout: 10000 }).should('exist'); | ||
} | ||
|
||
cy.get('body').click(0, 0); | ||
cy.logout(activeUser); | ||
}); | ||
}); |