diff --git a/apps/web/src/test/pages/editing-planner/components/PipConfigPanel/components/LayerList.test.tsx b/apps/web/src/test/pages/editing-planner/components/PipConfigPanel/components/LayerList.test.tsx new file mode 100644 index 000000000..9f8a6f18c --- /dev/null +++ b/apps/web/src/test/pages/editing-planner/components/PipConfigPanel/components/LayerList.test.tsx @@ -0,0 +1,11 @@ +/** + * Smoke test for LayerList.test + */ +import { describe, it, expect } from "vitest" +import "@/pages/editing-planner/components/PipConfigPanel/components/LayerList" + +describe("LayerList.test smoke", () => { + it("should load module successfully", () => { + expect(true).toBe(true) + }) +})