@testim/testim-cli
Version:
Command line interface for running Testing on you CI
48 lines (43 loc) • 920 B
JavaScript
/**
* helper to detect the Selenium backend according to given capabilities
*/
module.exports = function(capabilities) {
/**
* local Selenium server
*/
if(!capabilities.user || !capabilities.key) {
return {
host: '127.0.0.1',
port: 4444
};
}
/**
* browserstack
* e.g. zHcv9sZ39ip8ZPsxBVJ2
*/
if(capabilities.key.length === 20) {
return {
host: 'hub.browserstack.com',
port: 80
};
}
/**
* testingbot
* e.g. ec337d7b677720a4dde7bd72be0bfc67
*/
if(capabilities.key.length === 32) {
return {
host: 'hub.testingbot.com',
port: 80
};
}
/**
* Sauce Labs
* e.g. 50aa152c-1932-B2f0-9707-18z46q2n1mb0
*/
return {
host: 'ondemand.saucelabs.com',
port: 80,
updateJob: true
};
};