From 399986f263ed43ae52d8814a5b09b78f9d3b3fca Mon Sep 17 00:00:00 2001 From: Gabriellvl Date: Mon, 7 Apr 2025 16:46:57 +0200 Subject: [PATCH] fix: typ fout in test --- backend/tests/controllers/answers.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tests/controllers/answers.test.ts b/backend/tests/controllers/answers.test.ts index 26d7568c..081cc176 100644 --- a/backend/tests/controllers/answers.test.ts +++ b/backend/tests/controllers/answers.test.ts @@ -34,7 +34,7 @@ describe('Questions controllers', () => { const result = jsonMock.mock.lastCall?.[0]; // Console.log(result.answers); - expect(result.questions).to.have.length.greaterThan(1); + expect(result.answers).to.have.length.greaterThan(1); }); it('Get answer', async () => {