Added tests for curseforge-game-version-type

This commit is contained in:
Kir_Antipov 2024-01-07 13:57:24 +00:00
parent db32f23160
commit ccec351c99

View file

@ -0,0 +1,11 @@
import { BUKKIT_GAME_VERSION_TYPE } from "@/platforms/curseforge/curseforge-game-version-type";
describe("BUKKIT_GAME_VERSION_TYPE", () => {
test("is a valid version type that represents Bukkit", () => {
expect(BUKKIT_GAME_VERSION_TYPE).toEqual({
id: 1,
name: "Bukkit",
slug: "bukkit",
});
});
});