style(ui): format add_agent_form test with prettier

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
yassin 2026-09-17 19:42:56 +00:00
parent 433c804a6c
commit 322262db01

View file

@ -154,10 +154,12 @@ describe("AddAgentForm logos", () => {
it("includes selected access groups in the create payload", async () => {
const user = userEvent.setup({ pointerEventsCheck: PointerEventsCheckLevel.Never });
vi.mocked(networking.createAgentCall).mockReset().mockResolvedValue({
agent_id: "agent-1",
agent_name: "Test Agent",
} as never);
vi.mocked(networking.createAgentCall)
.mockReset()
.mockResolvedValue({
agent_id: "agent-1",
agent_name: "Test Agent",
} as never);
vi.mocked(networking.keyListCall).mockResolvedValue({ keys: [] });
renderForm();