From cbe101636ad2eaaede11f8be4597ac2ae97e1e4d Mon Sep 17 00:00:00 2001 From: Alexander Harkness <me@bearbin.net> Date: Fri, 18 Oct 2019 23:26:26 +0100 Subject: [PATCH] Correct host to connect to in e2e tests --- __e2e_tests__/peer1.e2e.js | 2 +- __e2e_tests__/peer2.e2e.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/__e2e_tests__/peer1.e2e.js b/__e2e_tests__/peer1.e2e.js index 58be35e..d46c95c 100644 --- a/__e2e_tests__/peer1.e2e.js +++ b/__e2e_tests__/peer1.e2e.js @@ -1,6 +1,6 @@ import { Selector } from "testcafe" -const host = "0.0.0.0" +const host = "127.0.0.1" const port = process.env.PORT || 3000 fixture`Peer 1`.page`${host}:${port}` diff --git a/__e2e_tests__/peer2.e2e.js b/__e2e_tests__/peer2.e2e.js index 38388a9..c9b8703 100644 --- a/__e2e_tests__/peer2.e2e.js +++ b/__e2e_tests__/peer2.e2e.js @@ -1,6 +1,6 @@ import { Selector } from "testcafe" -const host = "0.0.0.0" +const host = "127.0.0.1" const port = process.env.PORT || 3000 fixture`Peer 2`.page`${host}:${port}` -- GitLab