(binDir: string)
| 80 | /** An `executor` on PATH that runs this checkout's CLI, so the recording |
| 81 | * shows the command a user actually types. */ |
| 82 | const writeExecutorShim = (binDir: string) => { |
| 83 | const shim = join(binDir, "executor"); |
| 84 | writeFileSync(shim, `#!/bin/sh\nexec bun run "${join(repoRoot, "apps/cli/src/main.ts")}" "$@"\n`); |
| 85 | chmodSync(shim, 0o755); |
| 86 | }; |
| 87 | |
| 88 | scenario( |
| 89 | "CLI call · a signed-out hosted profile explains how to log back in", |
no outgoing calls
no test coverage detected