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