Files
SnapOtter/tests/unit/web/tool-card-pin.test.tsx
T
SnapOtterandGitHub 3aaaacc7a1 feat: pin frequently-used tools to the top of the dashboard (#440)
* feat(i18n): add pin/unpin/pinned strings, retire addToFavourites stub

Claude-Session: https://claude.ai/code/session_01Ad5LjCDJyW1tLFd3P4Hedp

* feat(web): add per-user pinned-tools store

Claude-Session: https://claude.ai/code/session_01Ad5LjCDJyW1tLFd3P4Hedp

* feat(web): add opt-in pin toggle to ToolCard

Claude-Session: https://claude.ai/code/session_01Ad5LjCDJyW1tLFd3P4Hedp

* feat(web): render Pinned section on the dashboard All tab

Claude-Session: https://claude.ai/code/session_01Ad5LjCDJyW1tLFd3P4Hedp

* test(web): cover pin toggle (component) and dashboard pin flow (e2e)

Claude-Session: https://claude.ai/code/session_01Ad5LjCDJyW1tLFd3P4Hedp
2026-07-06 17:59:30 +08:00

59 lines
1.9 KiB
TypeScript

// @vitest-environment jsdom
import { TOOLS } from "@snapotter/shared";
import { cleanup, fireEvent, render, screen } from "@testing-library/react";
import { MemoryRouter } from "react-router-dom";
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
import { ToolCard } from "@/components/common/tool-card";
import { usePinnedToolsStore } from "@/stores/pinned-tools-store";
// Make the store's optimistic persistence a no-op so the test stays server-free.
vi.mock("@/lib/api", () => ({
apiGet: vi.fn(() => Promise.resolve({ preferences: {} })),
apiPut: vi.fn(() => Promise.resolve({ ok: true })),
}));
const resize = TOOLS.find((tool) => tool.id === "resize");
if (!resize) throw new Error("resize tool missing from TOOLS");
afterEach(cleanup);
beforeEach(() => {
usePinnedToolsStore.setState({
pinnedTools: [],
lastConfirmed: [],
loaded: true,
loadError: false,
});
});
function renderCard(showPin: boolean) {
return render(
<MemoryRouter>
<ToolCard tool={resize} variant="descriptive" showPin={showPin} />
</MemoryRouter>,
);
}
describe("ToolCard pin button", () => {
it("renders no pin button unless showPin is set", () => {
renderCard(false);
expect(screen.queryByTestId("pin-toggle-resize")).toBeNull();
});
it("toggles pinned state and aria label when clicked", () => {
renderCard(true);
const btn = screen.getByTestId("pin-toggle-resize");
expect(btn.getAttribute("aria-label")).toBe("Pin");
expect(btn.getAttribute("aria-pressed")).toBe("false");
fireEvent.click(btn);
expect(usePinnedToolsStore.getState().pinnedTools).toEqual(["resize"]);
const pinnedBtn = screen.getByTestId("pin-toggle-resize");
expect(pinnedBtn.getAttribute("aria-label")).toBe("Unpin");
expect(pinnedBtn.getAttribute("aria-pressed")).toBe("true");
fireEvent.click(pinnedBtn);
expect(usePinnedToolsStore.getState().pinnedTools).toEqual([]);
});
});