From 6769cc8c10bba3c7a06cc00b3b10a21424aa98c7 Mon Sep 17 00:00:00 2001 From: Elias Schneider Date: Sat, 24 Aug 2024 12:50:27 +0200 Subject: [PATCH] tests: fix missing host in cleanup request --- frontend/tests/utils/cleanup.util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/tests/utils/cleanup.util.ts b/frontend/tests/utils/cleanup.util.ts index fbe1eba..a5567ed 100644 --- a/frontend/tests/utils/cleanup.util.ts +++ b/frontend/tests/utils/cleanup.util.ts @@ -1,5 +1,5 @@ import axios from 'axios'; export async function cleanupBackend() { - await axios.post('/api/test/reset'); + await axios.post('http://localhost/api/test/reset'); }