This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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");
});