Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
GordonSmith committed Oct 1, 2024
1 parent c786ca4 commit 8c8a26a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/comms/tests/testLib.ts
Original file line number Diff line number Diff line change
@@ -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}`);
Expand Down

0 comments on commit 8c8a26a

Please sign in to comment.