mirror of
https://github.com/elastic/kibana.git
synced 2025-04-21 08:19:33 -04:00
--------- **Commit 1:** Update selenium from 2.48.2 to 2.53.0 to work with latest Firefox 45.0.1 * Original sha:81821fc99d
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-04-05T20:46:06Z **Commit 2:** Update downloadSelenium to match version in intern.js. * Original sha:431fe52cec
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-04-06T12:36:06Z **Commit 3:** Add selenium-server-standalone jar md5. * Original sha:4002140a9c
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-04-06T13:46:17Z
31 lines
835 B
JavaScript
31 lines
835 B
JavaScript
define(function (require) {
|
|
var serverConfig = require('intern/dojo/node!./serverConfig');
|
|
var _ = require('intern/dojo/node!lodash');
|
|
|
|
return _.assign({
|
|
debug: true,
|
|
capabilities: {
|
|
'selenium-version': '2.53.0',
|
|
'idle-timeout': 99
|
|
},
|
|
environments: [{
|
|
browserName: 'firefox'
|
|
}],
|
|
tunnelOptions: serverConfig.servers.webdriver,
|
|
functionalSuites: [
|
|
'test/functional/status_page/index',
|
|
'test/functional/apps/settings/index',
|
|
'test/functional/apps/discover/index'
|
|
],
|
|
excludeInstrumentation: /(fixtures|node_modules)\//,
|
|
loaderOptions: {
|
|
paths: {
|
|
'bluebird': './node_modules/bluebird/js/browser/bluebird.js',
|
|
'moment': './node_modules/moment/moment.js'
|
|
}
|
|
},
|
|
timeouts: {
|
|
default: 90000
|
|
},
|
|
}, serverConfig);
|
|
});
|