Javascript-Library/test/mojang.ts

8 lines
219 B
TypeScript
Raw Normal View History

2024-04-14 20:11:46 +00:00
import mcUtils from "../src/index";
test("ensureMojangEndpointStatusLookupSuccess", async () => {
const response = await mcUtils.mojang.getMojangEndpointStatus();
expect(response).toHaveProperty("endpoints");
});