mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 01:50:39 +09:00
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
|
|
// @vitest-environment node
|
||
|
|
import { describe, expect, it } from "vitest";
|
||
|
|
import { buildNewAgentHirePayload } from "./new-agent-hire-payload";
|
||
|
|
import { defaultCreateValues } from "../components/agent-config-defaults";
|
||
|
|
|
||
|
|
describe("buildNewAgentHirePayload", () => {
|
||
|
|
it("persists the selected default environment id", () => {
|
||
|
|
expect(
|
||
|
|
buildNewAgentHirePayload({
|
||
|
|
name: "Linux Claude",
|
||
|
|
effectiveRole: "general",
|
||
|
|
configValues: {
|
||
|
|
...defaultCreateValues,
|
||
|
|
adapterType: "claude_local",
|
||
|
|
defaultEnvironmentId: "11111111-1111-4111-8111-111111111111",
|
||
|
|
},
|
||
|
|
adapterConfig: { foo: "bar" },
|
||
|
|
}),
|
||
|
|
).toMatchObject({
|
||
|
|
name: "Linux Claude",
|
||
|
|
role: "general",
|
||
|
|
adapterType: "claude_local",
|
||
|
|
defaultEnvironmentId: "11111111-1111-4111-8111-111111111111",
|
||
|
|
adapterConfig: { foo: "bar" },
|
||
|
|
budgetMonthlyCents: 0,
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
it("sends null when no default environment is selected", () => {
|
||
|
|
expect(
|
||
|
|
buildNewAgentHirePayload({
|
||
|
|
name: "Local Claude",
|
||
|
|
effectiveRole: "general",
|
||
|
|
configValues: {
|
||
|
|
...defaultCreateValues,
|
||
|
|
adapterType: "claude_local",
|
||
|
|
},
|
||
|
|
adapterConfig: {},
|
||
|
|
}),
|
||
|
|
).toMatchObject({
|
||
|
|
defaultEnvironmentId: null,
|
||
|
|
});
|
||
|
|
});
|
||
|
|
});
|