22 lines
752 B
TypeScript
22 lines
752 B
TypeScript
import {getBlockedStatus, getServer, getServerIcon, ServerPlatform} from "../dist";
|
|
|
|
test("ensureGetServerLookupSuccess", async () => {
|
|
const server = await getServer(ServerPlatform.Java, "mc.hypixel.net");
|
|
|
|
expect(server).toBeDefined();
|
|
expect(server).toHaveProperty("hostname"); // The server was found
|
|
});
|
|
|
|
test("ensureGetServerIconSuccess", async () => {
|
|
const icon = await getServerIcon("mc.hypixel.net");
|
|
expect(icon).toBeDefined();
|
|
expect(icon.byteLength).toBeGreaterThan(0); // The server has an icon
|
|
});
|
|
|
|
test("ensureGetServerBlockedStatusSuccess", async () => {
|
|
const blockedStatus = await getBlockedStatus("mc.hypixel.net");
|
|
const { blocked } = blockedStatus;
|
|
|
|
expect(blocked).toBe(false); // The server is not blocked
|
|
});
|