Files
multica/packages/core/platform/storage-cleanup.test.ts

26 lines
1.2 KiB
TypeScript

import { describe, it, expect, vi } from "vitest";
import { clearWorkspaceStorage } from "./storage-cleanup";
describe("clearWorkspaceStorage", () => {
it("removes all workspace-scoped keys for given wsId", () => {
const adapter = {
getItem: vi.fn(),
setItem: vi.fn(),
removeItem: vi.fn(),
};
clearWorkspaceStorage(adapter, "ws_123");
expect(adapter.removeItem).toHaveBeenCalledWith("multica_issue_draft:ws_123");
expect(adapter.removeItem).toHaveBeenCalledWith("multica_issues_view:ws_123");
expect(adapter.removeItem).toHaveBeenCalledWith("multica_issues_scope:ws_123");
expect(adapter.removeItem).toHaveBeenCalledWith("multica_my_issues_view:ws_123");
expect(adapter.removeItem).toHaveBeenCalledWith("multica:chat:selectedAgentId:ws_123");
expect(adapter.removeItem).toHaveBeenCalledWith("multica:chat:activeSessionId:ws_123");
expect(adapter.removeItem).toHaveBeenCalledWith("multica:chat:drafts:ws_123");
expect(adapter.removeItem).toHaveBeenCalledWith("multica:chat:expanded:ws_123");
expect(adapter.removeItem).toHaveBeenCalledWith("multica_navigation:ws_123");
expect(adapter.removeItem).toHaveBeenCalledTimes(9);
});
});