mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-18 11:40:39 +09:00
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
|
|
import { afterEach, describe, expect, it } from "vitest";
|
||
|
|
import { testEnvironment } from "./test.js";
|
||
|
|
|
||
|
|
const originalNodeVersion = process.version;
|
||
|
|
|
||
|
|
function setNodeVersion(version: string): void {
|
||
|
|
Object.defineProperty(process, "version", {
|
||
|
|
configurable: true,
|
||
|
|
enumerable: true,
|
||
|
|
value: version,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
afterEach(() => {
|
||
|
|
setNodeVersion(originalNodeVersion);
|
||
|
|
});
|
||
|
|
|
||
|
|
describe("acpx_local environment diagnostics", () => {
|
||
|
|
it("does not force healthy default Claude diagnostics to warn", async () => {
|
||
|
|
setNodeVersion("v22.12.0");
|
||
|
|
|
||
|
|
const result = await testEnvironment({
|
||
|
|
adapterType: "acpx_local",
|
||
|
|
companyId: "test-company",
|
||
|
|
config: { agent: "claude" },
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(result.status).toBe("pass");
|
||
|
|
expect(result.checks).toContainEqual(
|
||
|
|
expect.objectContaining({
|
||
|
|
code: "acpx_agent_selected",
|
||
|
|
level: "info",
|
||
|
|
message: "ACP agent selected: claude",
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
expect(result.checks).toContainEqual(
|
||
|
|
expect.objectContaining({
|
||
|
|
code: "acpx_runtime_scaffold",
|
||
|
|
level: "info",
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
expect(result.checks).not.toContainEqual(
|
||
|
|
expect.objectContaining({
|
||
|
|
code: "acpx_runtime_scaffold",
|
||
|
|
level: "warn",
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
});
|
||
|
|
});
|