diff --git a/test/test.ping.ts b/test/test.ping.ts index 9375beb..b3d424c 100644 --- a/test/test.ping.ts +++ b/test/test.ping.ts @@ -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();