Skip to content
Snippets Groups Projects
Unverified Commit cbe10163 authored by Alexander Harkness's avatar Alexander Harkness
Browse files

Correct host to connect to in e2e tests

parent 0f531008
No related branches found
No related tags found
No related merge requests found
import { Selector } from "testcafe" import { Selector } from "testcafe"
const host = "0.0.0.0" const host = "127.0.0.1"
const port = process.env.PORT || 3000 const port = process.env.PORT || 3000
fixture`Peer 1`.page`${host}:${port}` fixture`Peer 1`.page`${host}:${port}`
......
import { Selector } from "testcafe" import { Selector } from "testcafe"
const host = "0.0.0.0" const host = "127.0.0.1"
const port = process.env.PORT || 3000 const port = process.env.PORT || 3000
fixture`Peer 2`.page`${host}:${port}` fixture`Peer 2`.page`${host}:${port}`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment