Skip to content

Commit

Permalink
fix: update nest tests
Browse files Browse the repository at this point in the history
  • Loading branch information
valerydluski committed Nov 5, 2024
1 parent ab6ef7f commit 610182e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions nestjs/src/courses/course-schedule/course-schedule.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ import {
TaskInterviewResult,
TaskResult,
TaskSolution,
TeamDistribution,
TeamDistributionStudent,
} from '@entities/index';

const MOCK_CURRENT_TIME = new Date('2022-03-22T00:00:00.000Z');
Expand Down Expand Up @@ -111,6 +113,14 @@ describe('CourseScheduleService', () => {
provide: getRepositoryToken(TaskChecker),
useValue: {},
},
{
provide: getRepositoryToken(TeamDistributionStudent),
useValue: {},
},
{
provide: getRepositoryToken(TeamDistribution),
useValue: {},
},
],
}).compile();

Expand Down

0 comments on commit 610182e

Please sign in to comment.