Skip to content

Commit 738176b

Browse files
committed
chore: fix participant controller spec
1 parent 033d122 commit 738176b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

apps/backend/src/research/participants/participants.controller.spec.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Test, TestingModule } from "@nestjs/testing";
22
import { ParticipantsController } from "./participants.controller";
33
import { ParticipantsService } from "./participants.service";
4+
import { QuestionnairesService } from "../questionnaires/questionnaires.service";
45

56
describe("ParticipantsController", () => {
67
let controller: ParticipantsController;
@@ -13,6 +14,10 @@ describe("ParticipantsController", () => {
1314
provide: ParticipantsService,
1415
useValue: {},
1516
},
17+
{
18+
provide: QuestionnairesService,
19+
useValue: {},
20+
},
1621
],
1722
}).compile();
1823

0 commit comments

Comments
 (0)