fix(core): update

This commit is contained in:
Philipp Kunz 2022-02-17 00:33:11 +01:00
parent 54bb9549a1
commit 42f5d66fc4

View File

@ -11,6 +11,8 @@ tap.test('should create a vlid instance of SmartNetwork', async () => {
tap.test('should send a ping to Google', async () => {
expectAsync(testSmartnetwork.ping('https://lossless.com')).toBeTrue();
expectAsync(testSmartnetwork.ping('https://notthere.lossless.com')).toBeTrue();
expectAsync(testSmartnetwork.ping('192.168.186.999')).toBeFalse();
});
tap.start();