mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -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
15 lines
380 B
JavaScript
15 lines
380 B
JavaScript
var path = require('path');
|
|
|
|
|
|
module.exports = function (grunt) {
|
|
return {
|
|
options: {
|
|
selenium: {
|
|
filename: 'selenium-server-standalone-2.53.0.jar',
|
|
server: 'https://selenium-release.storage.googleapis.com/2.53/',
|
|
md5: '774efe2d84987fb679f2dea038c2fa32',
|
|
directory: path.join(grunt.config.get('root'), 'selenium')
|
|
}
|
|
}
|
|
};
|
|
};
|