Created
September 24, 2019 20:10
-
-
Save alfredlucero/c86a4e599eee31b6f729df2841060c1f to your computer and use it in GitHub Desktop.
wdio.staging.conf.js - STUI to Webdriver SG Blog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const merge = require("deepmerge"); | |
const wdioConf = require("./wdio.conf.js"); | |
exports.config = merge(wdioConf.config, { | |
services: ["selenium-standalone"], | |
// Staging specific environment variables and settings | |
user: "staging_user", | |
password: "staging_user_password", | |
envValue: "staging", | |
baseUrl: "https://staging.app.com" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment