From 31b3aacadfb8fac6319d008cc2b201227c401bf7 Mon Sep 17 00:00:00 2001 From: xiaoxia Date: Thu, 30 Jul 2026 09:24:25 +0800 Subject: [PATCH] test: add smoke test --- .../components/StickerPropsEditor.test.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 apps/web/src/test/pages/editing-planner/components/StickerPanel/components/StickerPropsEditor.test.tsx diff --git a/apps/web/src/test/pages/editing-planner/components/StickerPanel/components/StickerPropsEditor.test.tsx b/apps/web/src/test/pages/editing-planner/components/StickerPanel/components/StickerPropsEditor.test.tsx new file mode 100644 index 000000000..612eca228 --- /dev/null +++ b/apps/web/src/test/pages/editing-planner/components/StickerPanel/components/StickerPropsEditor.test.tsx @@ -0,0 +1,11 @@ +/** + * Smoke test for StickerPropsEditor.test + */ +import { describe, it, expect } from "vitest" +import "@/pages/editing-planner/components/StickerPanel/components/StickerPropsEditor" + +describe("StickerPropsEditor.test smoke", () => { + it("should load module successfully", () => { + expect(true).toBe(true) + }) +})