diff --git a/backend/tests/e2e/notes.spec.ts b/backend/tests/e2e/notes.spec.ts index 528f0994..19d4cf07 100644 --- a/backend/tests/e2e/notes.spec.ts +++ b/backend/tests/e2e/notes.spec.ts @@ -11,7 +11,7 @@ let createdID: number; let token: string; test('Health check', async () => { - const response = await request(BASE_URL).get('/health'); + const response = await request(BASE_URL).get('/api/health'); expect(response.status).toBe(200); });