We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Checked to see if the adding 'tunnelDomains' works within the sauceConnectLauncher options and it does.
Recommend updating readme to include this option.
var options = { username: username, accessKey: password, tunnelDomains : '*domain1.com,*domain2.net' }; var promise = new Promise(function(resolve,reject){ sauceConnectLauncher(options,function(error, sauceConnectProcess){ if (sauceConnectProcess.tunnelId) { console.log('id = ' + sauceConnectProcess.tunnelId); resolve (); } else if (error){ reject (error.message); } }); }).then(function(result){ console.log('Tunnel Is Established'); },function(error){ console.log(error); }); return promise;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Checked to see if the adding 'tunnelDomains' works within the sauceConnectLauncher options and it does.
Recommend updating readme to include this option.
The text was updated successfully, but these errors were encountered: