From 42f5d66fc4ccbb5343fac535eb6686e88867a92a Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Thu, 17 Feb 2022 00:33:11 +0100 Subject: [PATCH] fix(core): update --- test/test.ping.ts | 2 ++ 1 file changed, 2 insertions(+) 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();