mc-publish/tests/unit/games/minecraft/minecraft.spec.ts

8 lines
179 B
TypeScript
Raw Normal View History

2024-01-06 06:46:05 -05:00
import { MINECRAFT } from "@/games/minecraft/minecraft";
describe("MINECRAFT", () => {
test("is string", () => {
expect(typeof MINECRAFT).toBe("string");
});
});