chore: sync non-pi changes from remote (eigent update, formatting fixes, gitignore)

This commit is contained in:
Chiron
2026-04-18 10:05:59 +00:00
parent a0f4d401df
commit 44c7e0d19a
7 changed files with 71 additions and 22 deletions

View File

@@ -12,17 +12,14 @@ let
}
);
in
assert result.success == false;
{result = "pass";};
assert result.success == false; {result = "pass";};
# Test 2: loadCanonical extracts loadAgents from input
testLoadCanonical = let
fakeInput = {lib.loadAgents = {test = {description = "test";};};};
result = agentsLib.loadCanonical {agentsInput = fakeInput;};
in
assert result == {test = {description = "test";};};
{result = "pass";};
assert result == {test = {description = "test";};}; {result = "pass";};
in {
unknown-tool-throws = testUnknownTool;
load-canonical = testLoadCanonical;