fix: repair truncated test file — close describe block

This commit is contained in:
saberzero1 2026-03-09 03:21:37 +01:00
parent 15af013270
commit 4afee1541c
No known key found for this signature in database

View file

@ -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");
});
});