Function
descriptor
(tools: readonly AppDescriptor["tools"][number][])
Source from the content-addressed store, hash-verified
| 136 | }; |
| 137 | |
| 138 | const descriptor = (tools: readonly AppDescriptor["tools"][number][]): AppDescriptor => ({ |
| 139 | version: 6, |
| 140 | app: "crm", |
| 141 | sourceRef: "sha-1", |
| 142 | publishedAt: 1, |
| 143 | toolchain: { |
| 144 | bundler: { name: "esbuild", version: "0" }, |
| 145 | executor: { name: "test", version: "0" }, |
| 146 | target: "es2022", |
| 147 | }, |
| 148 | tools, |
| 149 | workflows: [], |
| 150 | ui: [], |
| 151 | skills: [], |
| 152 | skipped: [], |
| 153 | }); |
| 154 | |
| 155 | const tool = (name: string): AppDescriptor["tools"][number] => ({ |
| 156 | name, |
Tested by
no test coverage detected