mirror of
https://github.com/ascribe/onion.git
synced 2025-01-03 10:25:08 +01:00
19 lines
382 B
JavaScript
19 lines
382 B
JavaScript
|
'use strict';
|
||
|
|
||
|
require('dotenv').load();
|
||
|
|
||
|
|
||
|
// https://code.google.com/p/selenium/wiki/DesiredCapabilities
|
||
|
const BROWSERS = [
|
||
|
'chrome,47,WINDOWS',
|
||
|
'chrome,46,WINDOWS',
|
||
|
'firefox,43,MAC',
|
||
|
'internet explorer,10,VISTA'
|
||
|
];
|
||
|
|
||
|
|
||
|
module.exports = {
|
||
|
BROWSERS: BROWSERS.map(x => x.split(',')),
|
||
|
APP_URL: process.env.SAUCE_DEFAULT_URL || 'http://www.localhost.com:3000'
|
||
|
};
|