Update hostname in PingMonitor test

This commit is contained in:
Simon Larsen
2023-11-22 12:13:19 +00:00
parent eff654c117
commit 7584bfd26c

View File

@@ -10,7 +10,7 @@ describe('Ping', () => {
jest.setTimeout(240000);
test('Ping.ping should return appropriate object if the valid hostname is given', async () => {
let result: PingResponse | null = await Ping.ping(
new Hostname('google.com')
new Hostname('apple.com')
);
expect(result).not.toBeNull();