test: add smoke test

This commit is contained in:
2026-07-30 09:24:50 +08:00
parent 4bd939972e
commit 7c4f133d3f
@@ -0,0 +1,11 @@
/**
* Smoke test for useTtsPanel.test
*/
import { describe, it, expect } from "vitest"
import "@/pages/editing-planner/components/TtsPanel/hooks/useTtsPanel"
describe("useTtsPanel.test smoke", () => {
it("should load module successfully", () => {
expect(true).toBe(true)
})
})