From 568b638c858570fbb0917e7784f2133295781ea9 Mon Sep 17 00:00:00 2001 From: Dave Gordon Date: Sat, 17 Aug 2024 23:59:20 +0100 Subject: [PATCH] [aws] chore: Deploy to aws --- backend/tests/e2e/notes.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); });