diff --git a/backend/src/auth/auth.controller.spec.ts b/backend/src/auth/auth.controller.spec.ts index f8e68a4..3375ce0 100644 --- a/backend/src/auth/auth.controller.spec.ts +++ b/backend/src/auth/auth.controller.spec.ts @@ -75,6 +75,7 @@ describe("AuthController", () => { password: "password", username: "test", }; + // biome-ignore lint/suspicious/noExplicitAny: Necessary to avoid defining full DTO in test await controller.register(dto as any); expect(authService.register).toHaveBeenCalledWith(dto); });