-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7b3111
commit e76ce44
Showing
6 changed files
with
119 additions
and
93 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
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
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
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
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 |
---|---|---|
|
@@ -14,10 +14,30 @@ beforeAll(async () => { | |
|
||
// Create users and contributions | ||
const users = [ | ||
{ email: "[email protected]", degree: "Computer Science", admissionYear: 2020, amount: 0 }, | ||
{ email: "[email protected]", degree: "Computer Science", admissionYear: 2020, amount: 200_00 }, | ||
{ email: "[email protected]", degree: "Computer Science", admissionYear: 2021, amount: 300_00 }, | ||
{ email: "[email protected]", degree: "Industrial Engineering", admissionYear: 2020, amount: 500_00 }, | ||
{ | ||
email: "[email protected]", | ||
degree: "Computer Science", | ||
admissionYear: 2020, | ||
amount: 0, | ||
}, | ||
{ | ||
email: "[email protected]", | ||
degree: "Computer Science", | ||
admissionYear: 2020, | ||
amount: 200_00, | ||
}, | ||
{ | ||
email: "[email protected]", | ||
degree: "Computer Science", | ||
admissionYear: 2021, | ||
amount: 300_00, | ||
}, | ||
{ | ||
email: "[email protected]", | ||
degree: "Industrial Engineering", | ||
admissionYear: 2020, | ||
amount: 500_00, | ||
}, | ||
]; | ||
|
||
for (const user of users) { | ||
|
@@ -33,7 +53,7 @@ beforeAll(async () => { | |
birthday: new Date("1990-01-01"), | ||
tutorshipInterest: false, | ||
mentorshipInterest: false, | ||
volunteeringInterest: false | ||
volunteeringInterest: false, | ||
}); | ||
|
||
if (user.amount > 0) { | ||
|
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