Created
September 24, 2019 17:56
-
-
Save alfredlucero/9294f80d7705849247ffc710bd18e116 to your computer and use it in GitHub Desktop.
wdio.localhost.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, { | |
// Localhost config file for when you have local web app running | |
// and pointing to whichever environment | |
services: ["selenium-standalone"], | |
baseUrl: "http://127.0.0.1:8000", | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment