mirror of
https://github.com/google/blockly.git
synced 2026-01-08 01:20:12 +01:00
28 lines
909 B
JavaScript
28 lines
909 B
JavaScript
/* eslint-disable */
|
|
|
|
module.exports = {
|
|
// check for more recent versions of selenium here:
|
|
// https://selenium-release.storage.googleapis.com/index.html
|
|
version: '3.9.1',
|
|
baseURL: 'https://selenium-release.storage.googleapis.com',
|
|
drivers: {
|
|
chrome: {
|
|
// check for more recent versions of chrome driver here:
|
|
// https://chromedriver.storage.googleapis.com/index.html
|
|
version: '85.0.4183.83',
|
|
arch: process.arch,
|
|
baseURL: 'https://chromedriver.storage.googleapis.com'
|
|
},
|
|
firefox: {
|
|
// check for more recent versions of chrome driver here:
|
|
// https://chromedriver.storage.googleapis.com/index.html
|
|
version: '0.21.0',
|
|
arch: process.arch,
|
|
baseURL: 'https://github.com/mozilla/geckodriver/releases/download'
|
|
},
|
|
},
|
|
requestOpts: { // see https://github.com/request/request#requestoptions-callback
|
|
timeout: 10000
|
|
},
|
|
};
|