Skip to content

Commit

Permalink
Set correct local URL and adapt other credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
robertauer committed Aug 2, 2018
1 parent 77b5b6f commit 6876466
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions integrationTests/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
let cesFqdn = process.env.CES_FQDN;
if (!cesFqdn) {
// url from ecosystem with private network
cesFqdn = "192.168.42.2"
cesFqdn = "192.168.56.2"
}

let webdriverType = process.env.WEBDRIVER;
Expand All @@ -13,13 +13,13 @@ module.exports = {
fqdn: cesFqdn,
baseUrl: 'https://' + cesFqdn,
jenkinsContextPath: '/jenkins',
username: 'ces-admin',
password: 'ecosystem2016',
username: 'admin',
password: 'adminpw',
firstname: 'admin',
lastname: 'admin',
displayName: 'admin',
email: '[email protected]',
webdriverType: webdriverType,
debug: true,
adminGroup: 'CesAdministrators'
adminGroup: 'cesAdmin'
};

0 comments on commit 6876466

Please sign in to comment.