From 447aeee9f3b504ec1bbea2b29226cc9394293908 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Tue, 15 Apr 2025 15:44:17 +0000 Subject: [PATCH] style: fix linting issues met ESLint --- backend/tests/controllers/teacher-invitations.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tests/controllers/teacher-invitations.test.ts b/backend/tests/controllers/teacher-invitations.test.ts index f14d3b3a..2e9b594f 100644 --- a/backend/tests/controllers/teacher-invitations.test.ts +++ b/backend/tests/controllers/teacher-invitations.test.ts @@ -37,7 +37,7 @@ describe('Teacher controllers', () => { expect(jsonMock).toHaveBeenCalledWith(expect.objectContaining({ invitations: expect.anything() })); const result = jsonMock.mock.lastCall?.[0]; - // console.log(result.invitations); + // Console.log(result.invitations); expect(result.invitations).to.have.length.greaterThan(0); });