mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-25 09:51:01 -05:00
Added tests for curseforge-game-version-type
This commit is contained in:
parent
db32f23160
commit
ccec351c99
1 changed files with 11 additions and 0 deletions
|
@ -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",
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in a new issue