diff --git a/ui/tests/unit/rectangle.spec.ts b/ui/tests/unit/rectangle.spec.ts index dc2c1fe..94a7234 100644 --- a/ui/tests/unit/rectangle.spec.ts +++ b/ui/tests/unit/rectangle.spec.ts @@ -1,7 +1,7 @@ import { Rectangle, Vector2D } from '@/components/rects/rectangles'; import { expect } from "chai"; -describe("Vector Tests", () => { +describe("Vector2D Tests", () => { const v = new Vector2D(1, 2); it("should create a vector", () => { @@ -22,7 +22,7 @@ describe("Vector Tests", () => { }); }); -describe("Vector Tests", () => { +describe("Rectangle Tests", () => { const v1 = new Vector2D(1, 2); const v2 = new Vector2D(4, 6);