From 8c8a26a7f7f1af2d16c2d170405c5ed4ef9b0e0f Mon Sep 17 00:00:00 2001 From: Gordon Smith Date: Tue, 1 Oct 2024 13:51:23 +0100 Subject: [PATCH] WIP --- packages/comms/tests/testLib.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/comms/tests/testLib.ts b/packages/comms/tests/testLib.ts index 67b257cfb5..20b388b4c0 100644 --- a/packages/comms/tests/testLib.ts +++ b/packages/comms/tests/testLib.ts @@ -1,8 +1,8 @@ import { isBrowser, isCI as utilIsTravis } from "@hpcc-js/util"; export const isCI = utilIsTravis; -export const ESP_URL = isCI ? "http://localhost:8010/" : "http://localhost:8010/"; -export const QUERY_URL = isCI ? "http://localhost:8002/" : "http://localhost:8002/"; +export const ESP_URL = isCI ? "http://127.0.0.1:8010/" : "http://127.0.0.1:8010/"; +export const QUERY_URL = isCI ? "http://127.0.0.1:8002/" : "http://127.0.0.1:8002/"; console.log(`Test Server: ${ESP_URL}`); console.log(`isCI: ${isCI}`);