A library to download and launch TestingBot Tunnel.
npm install testingbot-tunnel-launcher
var testingbotTunnel = require('testingbot-tunnel-launcher');
testingbotTunnel({
apiKey: 'key',
apiSecret: 'secret',
verbose: true
}, function (err, tunnel) {
if (err) {
console.error(err.message);
return;
}
console.log("Tunnel ready");
tunnel.close(function () {
console.log("Tunnel closed completely");
})
});
var testingbotTunnel = require('testingbot-tunnel-launcher'),
options = {
// The TestingBot API key which you can get for free, listed in our member area
apiKey: 'key',
// The TestingBot API secret which you can get for free, listed in our member area
apiSecret: 'secret',
// More verbose output from the tunnel
verbose: true,
// Port on which the tunnel Selenium relay will listen for
// requests. Default 4445. (optional)
se-port: null,
// Proxy host and port the tunnel can use to connect to an upstream proxy
// e.g. "localhost:1234" (optional)
proxy: null,
// a comma-separated list of domains that
// will not go through the tunnel. (optional)
fast-fail-regexps: null,
// Write logging output to this logfile (optional)
logfile: null,
// Change the tunnel version - see versions on https://testingbot.com/support/other/tunnel
tunnelVersion: "1.19", // or 2.1 (Java 8)
// Gives this tunnel a unique identifier
tunnelIdentifier: "myIdentifier"
};
testingbotTunnel(options, function(err, tunnel) {
console.log("Started Tunnel");
tunnel.close(function () {
console.log("Closed tunnel");
});
});
You can pass the TestingBot credentials as apiKey
and apiSecret
in the options.
You can also create a ~/.testingbot
file with apiKey:apiSecret
as content
npm test
- Add support for
tunnelIdentifier
- Improve parsing of arguments passed to the tunnel
- Throw error when user does not have any minutes left
- Add corrupt download check for tunnel binary
- Update dependencies
- Get rid of exit handlers, they're causing issues
- Add tests
- Update dependencies
- Properly handle SIGINT, exit and uncaughtException
- Small fixes
- Display new version/invalid credentials
- Add
tunnelVersion
support to specify which version of the tunnel you want to use
- Minor fixes
- First release of testingbot-tunnel-launcher
Copyright (c) TestingBot <info@testingbot.com>