mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 09:23:13 +01:00
Remove env variable from config
This commit is contained in:
parent
51d88a2ed2
commit
c3c9c88421
@ -14,6 +14,5 @@ const BROWSERS = [
|
||||
|
||||
module.exports = {
|
||||
BROWSERS: BROWSERS.map(x => x.split(',')),
|
||||
APP_URL: process.env.SAUCE_DEFAULT_URL || 'http://www.localhost.com:3000',
|
||||
TUNNEL_AUTO_CONNECT: process.env.SAUCE_AUTO_CONNECT
|
||||
APP_URL: process.env.SAUCE_DEFAULT_URL || 'http://www.localhost.com:3000'
|
||||
};
|
||||
|
@ -18,7 +18,7 @@ if (!process.env.SAUCE_ACCESS_KEY) {
|
||||
}
|
||||
|
||||
|
||||
if (config.TUNNEL_AUTO_CONNECT) {
|
||||
if (process.env.SAUCE_AUTO_CONNECT) {
|
||||
before(function(done) {
|
||||
console.log(colors.yellow('Setting up tunnel from Saucelabs to your lovely computer, will take a while.'));
|
||||
// Creating the tunnel takes a bit of time. For this case we can safely disable Mocha timeouts.
|
||||
|
Loading…
Reference in New Issue
Block a user