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