1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-29 00:58:03 +02:00
onion/test/integration/tunnel.js

26 lines
720 B
JavaScript
Raw Permalink Normal View History

2016-01-25 11:05:01 +01:00
'use strict';
const colors = require('colors');
const sauceConnectLauncher = require('sauce-connect-launcher');
const config = require('./config'); // eslint-disable-line no-unused-vars
2016-01-25 11:05:01 +01:00
function connect() {
console.log(
colors.yellow('Setting up tunnel from Saucelabs to your lovely computer, will take a while.')
);
2016-01-25 11:05:01 +01:00
// Creating the tunnel takes a bit of time. For this case we can safely disable Mocha timeouts.
sauceConnectLauncher((err) => {
2016-01-25 11:05:01 +01:00
if (err) {
console.error(err.message);
return;
}
console.log(colors.green('Connected! Keep this process running and execute your tests.'));
});
}
if (require.main === module) {
connect();
}