diff --git a/tests/tests/utils/debug.ts b/tests/tests/utils/debug.ts index 50eaa522..ad065c58 100644 --- a/tests/tests/utils/debug.ts +++ b/tests/tests/utils/debug.ts @@ -5,7 +5,7 @@ export async function getPusherDump(): Promise { let url = 'http://pusher.workadventure.localhost/dump?token=123'; if (fs.existsSync('/project')) { // We are inside a container. Let's use a direct route - url = 'http://pusher/dump?token=123'; + url = 'http://pusher:8080/dump?token=123'; } return (await axios({ @@ -19,7 +19,7 @@ export async function getBackDump(): Promise { let url = 'http://api.workadventure.localhost/dump?token=123'; if (fs.existsSync('/project')) { // We are inside a container. Let's use a direct route - url = 'http://back/dump?token=123'; + url = 'http://back:8080/dump?token=123'; } return (await axios({