fix(core): update

This commit is contained in:
Philipp Kunz 2019-04-18 00:04:02 +02:00
parent 05bc8fb72c
commit d3a507c3ff
2 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ tap.test('should determine wether a port is free', async () => {
tap.test('should scan a port', async () => {
await expect(testSmartNetwork.isRemotePortAvailable('google.com:80')).to.eventually.be.true;
await expect(testSmartNetwork.isRemotePortAvailable('google.com', 80)).to.be.eventually.true;
await expect(testSmartNetwork.isRemotePortAvailable('67.207.79.63:12346')).to.eventually.be.false;
});

View File

@ -112,7 +112,7 @@ export class SmartNetwork {
plugins.portscanner.checkPortStatus(port, domainPart, (err, status ) => {
if (err) {
console.log(err);
// console.log(err);
return done.resolve(false);
}
if (status === 'open') {