mirror of
https://github.com/elastic/kibana.git
synced 2025-04-22 00:45:43 -04:00
--------- **Commit 1:** Switch from Firefox to Chrome * Original sha:677a6c1d3f
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-06-17T22:32:15Z **Commit 2:** fix chromedriver.path * Original sha:589cb71cbb
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-06-20T14:25:22Z **Commit 3:** More selenium cleanup * Original sha:056294b7e9
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-06-20T15:23:29Z **Commit 4:** Put task intern:dev back in! * Original sha:b85d919f68
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-06-20T15:38:18Z **Commit 5:** temporary screenshots fix * Original sha:8a9178ca0d
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-06-20T16:11:53Z **Commit 6:** Add screenshots dir * Original sha:929f30c8cc
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-06-20T16:26:07Z **Commit 7:** Add getSpinnerDone on clickNewSearch to fix failures * Original sha:dfacedb27b
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-06-20T16:54:48Z **Commit 8:** Backport screenshots 'session' and 'failure' folders * Original sha:fe9f34cb68
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-06-20T18:04:56Z **Commit 9:** gitignore *.png in failures and session * Original sha:06d70e6a63
* Authored by LeeDr <lee.drengenberg@elastic.co> on 2016-06-20T20:53:26Z **Commit 10:** Update .gitignore * Original sha:603f5035ac
* Authored by Lee Drengenberg <lee.drengenberg@elastic.co> on 2016-06-20T21:21:55Z * Committed by GitHub <noreply@github.com> on 2016-06-20T21:21:55Z
32 lines
903 B
JavaScript
32 lines
903 B
JavaScript
define(function (require) {
|
|
var serverConfig = require('intern/dojo/node!./serverConfig');
|
|
var _ = require('intern/dojo/node!lodash');
|
|
|
|
return _.assign({
|
|
debug: true,
|
|
capabilities: {
|
|
'idle-timeout': 99
|
|
},
|
|
environments: [{
|
|
browserName: 'chrome'
|
|
}],
|
|
tunnelOptions: serverConfig.servers.webdriver,
|
|
functionalSuites: [
|
|
'test/functional/status_page/index',
|
|
'test/functional/apps/settings/index',
|
|
'test/functional/apps/discover/index',
|
|
'test/functional/apps/visualize/index'
|
|
],
|
|
excludeInstrumentation: /(fixtures|node_modules)\//,
|
|
loaderOptions: {
|
|
paths: {
|
|
'bluebird': './node_modules/bluebird/js/browser/bluebird.js',
|
|
'moment': './node_modules/moment/moment.js'
|
|
}
|
|
},
|
|
timeouts: {
|
|
// this is how long a test can run before timing out
|
|
default: 90000
|
|
},
|
|
}, serverConfig);
|
|
});
|