From be9f488aa2e25f0e648e849e0ca1293aa773e4cf Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Thu, 26 Dec 2024 19:18:25 -0600 Subject: [PATCH] Move board tests to match board file --- tests/{features => game}/board.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename tests/{features => game}/board.test.ts (100%) diff --git a/tests/features/board.test.ts b/tests/game/board.test.ts similarity index 100% rename from tests/features/board.test.ts rename to tests/game/board.test.ts index c9e4859..0b1bcbb 100644 --- a/tests/features/board.test.ts +++ b/tests/game/board.test.ts @@ -4,10 +4,10 @@ import { setupUniqueIds, unwrapNodeRef } from "game/boards/board"; +import { Direction } from "util/common"; import { beforeEach, describe, expect, test } from "vitest"; import { Ref, ref } from "vue"; import "../utils"; -import { Direction } from "util/common"; describe("Unwraps node refs", () => { test("Static value", () => expect(unwrapNodeRef(100, {})).toBe(100));