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 }); }); }); });