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