From 8eea656b969b72b67ab3525b3dfcb81fe68ade01 Mon Sep 17 00:00:00 2001 From: Belen Curcio Date: Sat, 17 Dec 2016 10:45:24 -0300 Subject: [PATCH] Updated Nightwatch conf with Integration Enviroment --- nightwatch.conf.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/nightwatch.conf.js b/nightwatch.conf.js index a39ab128f..6823636c3 100644 --- a/nightwatch.conf.js +++ b/nightwatch.conf.js @@ -19,6 +19,8 @@ module.exports = { }, 'test_settings': { 'default': { + 'launch_url' : 'http://localhost:3000', + 'globals' : {}, 'selenium_port': 6666, 'selenium_host': 'localhost', 'silent': true, @@ -27,7 +29,7 @@ module.exports = { 'javascriptEnabled': true, 'acceptSslCerts': true, 'webStorageEnabled' : true, - 'databaseEnabled' : true, + 'databaseEnabled' : true,"" 'applicationCacheEnabled' : false, 'nativeEvents' : true }, @@ -37,8 +39,11 @@ module.exports = { 'on_error' : true, 'path' : './tests/e2e/reports' }, - 'exclude': [ - ] + 'exclude': [] + }, + 'integration': { + 'launch_url' : 'http://localhost:3000', + 'globals' : {} } } };