(source: string)
| 5 | import type { AppToolExecutor } from "../executor/app-tool-executor"; |
| 6 | |
| 7 | const bundle = (source: string) => |
| 8 | bundleEntry({ |
| 9 | files: new Map([["tools/conformance.ts", source]]), |
| 10 | entry: "tools/conformance.ts", |
| 11 | }); |
| 12 | |
| 13 | export const appToolExecutorConformance = ( |
| 14 | name: string, |
no test coverage detected