Javascript-Library/test/mojang.ts
Liam db98cf20a1
All checks were successful
Publish Package / build (push) Successful in 19s
fix cache import
2024-04-19 20:39:30 +01:00

8 lines
217 B
TypeScript

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