tests: fix missing host in cleanup request

This commit is contained in:
Elias Schneider
2024-08-24 12:50:27 +02:00
parent 97f7fc4e28
commit 6769cc8c10

View File

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