From ba7600bfc5c8d691b60e5e2bc62efa8917d26eb2 Mon Sep 17 00:00:00 2001 From: CSantosM <4a.santos@gmail.com> Date: Mon, 2 Feb 2026 17:01:41 +0100 Subject: [PATCH] test: Fix default captions config enabled state to false --- .../tests/integration/api/global-config/captions.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meet-ce/backend/tests/integration/api/global-config/captions.test.ts b/meet-ce/backend/tests/integration/api/global-config/captions.test.ts index ed19c6ef..de3a5105 100644 --- a/meet-ce/backend/tests/integration/api/global-config/captions.test.ts +++ b/meet-ce/backend/tests/integration/api/global-config/captions.test.ts @@ -17,7 +17,7 @@ describe('Captions Config API Tests', () => { it('should return enabled true by default', async () => { const response = await getCaptionsConfig(); expect(response.status).toBe(200); - expect(response.body).toEqual({ enabled: true }); + expect(response.body).toEqual({ enabled: false }); }); }); });