Javascript-Library/test/mojang.ts
2024-04-14 21:11:46 +01:00

8 lines
219 B
TypeScript

import mcUtils from "../src/index";
test("ensureMojangEndpointStatusLookupSuccess", async () => {
const response = await mcUtils.mojang.getMojangEndpointStatus();
expect(response).toHaveProperty("endpoints");
});