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