Skip to content

Commit

Permalink
fix: 10
Browse files Browse the repository at this point in the history
  • Loading branch information
whiitex committed May 19, 2024
1 parent dd3f63a commit 0c92b3d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions api/src/timeslots/timeslots.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,14 @@ describe('TimeslotsController', () => {

describe(' GET /timeslots', () => {
beforeEach(async () => {
for (const user of mockUsers) {
await usersService.create(user);
}

for (const rs of mockRecruitmentSessions) {
await recruitmentSessionService.createRecruitmentSession(rs);
}

for (const ts of mockTimeSlots) {
const timeSlot = {
...ts,
Expand Down

0 comments on commit 0c92b3d

Please sign in to comment.