From 4afee1541ca6c383ed2d09c730fce72830c14bb2 Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Mon, 9 Mar 2026 03:21:37 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20repair=20truncated=20test=20file=20?= =?UTF-8?q?=E2=80=94=20close=20describe=20block?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/explorer.test.ts | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/test/explorer.test.ts b/test/explorer.test.ts index bdee261..91460f7 100644 --- a/test/explorer.test.ts +++ b/test/explorer.test.ts @@ -36,17 +36,3 @@ describe("Explorer Component", () => { }); }); -describe("Explorer Manifest", () => { - it("should export a valid plugin manifest", async () => { - const { manifest } = await import("../src/manifest"); - - expect(manifest).toBeDefined(); - expect(manifest.name).toBe("@quartz-community/explorer"); - expect(manifest.version).toBeDefined(); - expect(manifest.components).toBeDefined(); - expect(typeof manifest.components).toBe("object"); - const explorerComponent = manifest.components?.Explorer; - expect(explorerComponent).toBeDefined(); - expect(explorerComponent?.name).toBe("Explorer"); - }); -});