From 3776c4d0504216f575184ddf61941c28f5654346 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Thu, 21 Dec 2017 12:31:36 +0100 Subject: [PATCH] Use private ip --- config.js | 2 +- test/e2e/specs/01_install.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config.js b/config.js index 1379a0be5..578f2d5b8 100644 --- a/config.js +++ b/config.js @@ -11,7 +11,7 @@ const uniq = require('lodash/uniq'); const ms = require('ms'); const debug = require('debug')('talk:config'); -const localAddress = require('ip').address(); +const localAddress = require('ip').address('private'); //============================================================================== // CONFIG INITIALIZATION diff --git a/test/e2e/specs/01_install.js b/test/e2e/specs/01_install.js index 078a22e50..9bee6deac 100644 --- a/test/e2e/specs/01_install.js +++ b/test/e2e/specs/01_install.js @@ -2,6 +2,7 @@ module.exports = { '@tags': ['install'], before: (client) => { + client.setWindowPosition(0, 0); client.resizeWindow(1600, 1200); },