fix(core): update

This commit is contained in:
2019-11-23 16:07:04 +00:00
parent 12b8793c19
commit 654a4c6b54
5 changed files with 213 additions and 1 deletions

View File

@ -34,4 +34,9 @@ tap.test('should get the default gateway', async () => {
console.log(gatewayResult);
});
tap.test('should get public ips', async () => {
const ips = await testSmartNetwork.getPublicIps();
console.log(ips);
});
tap.start();