mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 16:31:04 -05:00
7 lines
251 B
TypeScript
7 lines
251 B
TypeScript
import { MINECRAFT_VERSION_PROVIDER } from "@/games/minecraft/minecraft-version-provider";
|
|
|
|
describe("MINECRAFT_VERSION_PROVIDER", () => {
|
|
test("is callable", () => {
|
|
expect(typeof MINECRAFT_VERSION_PROVIDER).toBe("function");
|
|
});
|
|
});
|