| 15 | const bin = require.resolve("../cli.js"); |
| 16 | |
| 17 | interface TestOptions { |
| 18 | cwd: string; |
| 19 | env?: Record<string, string>; |
| 20 | } |
| 21 | |
| 22 | const cli = (args: string[], options: TestOptions) => { |
| 23 | return (input = "") => { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…