import { describe, expect, it } from "vitest"; import { FIND_MOTHERSHIP_SUGGESTION_TARGET } from "@/workers/rpa/mothership-styled-suggestion-click"; describe("mothership-styled-suggestion-click", () => { it("FIND_MOTHERSHIP_SUGGESTION_TARGET 为纯字符串(locator 点击路径)", () => { expect(typeof FIND_MOTHERSHIP_SUGGESTION_TARGET).toBe("string"); expect(FIND_MOTHERSHIP_SUGGESTION_TARGET).toContain("use-locator-click"); }); });