2020-08-07 18:59:25 +03:00
|
|
|
// Switch these lines once there are useful utils
|
|
|
|
// const testUtils = require('./utils');
|
|
|
|
require('./utils');
|
|
|
|
|
2020-08-09 19:15:46 +03:00
|
|
|
const bootstrapSocket = require('../lib/bootstrap-socket');
|
2020-08-07 18:59:25 +03:00
|
|
|
|
|
|
|
describe('Connect and send', function () {
|
|
|
|
it('Resolves a promise for a bad call', function () {
|
2020-08-09 19:15:46 +03:00
|
|
|
bootstrapSocket.connectAndSend().should.be.fulfilled();
|
2020-08-07 18:59:25 +03:00
|
|
|
});
|
|
|
|
});
|