Function
tool
(input: {
readonly id: string;
readonly name: string;
readonly owner?: Owner;
readonly connection?: string;
})
Source from the content-addressed store, hash-verified
| 12 | }; |
| 13 | |
| 14 | const tool = (input: { |
| 15 | readonly id: string; |
| 16 | readonly name: string; |
| 17 | readonly owner?: Owner; |
| 18 | readonly connection?: string; |
| 19 | }): ToolSummary => ({ |
| 20 | id: input.id, |
| 21 | name: input.name, |
| 22 | description: undefined, |
| 23 | policy: approve, |
| 24 | owner: input.owner, |
| 25 | connection: input.connection, |
| 26 | }); |
| 27 | |
| 28 | describe("buildAccountGroups", () => { |
| 29 | it("groups tools by (owner, connection) and badges each section by owner", () => { |
Tested by
no test coverage detected