(command, options = {})
| 32 | } |
| 33 | |
| 34 | function execCommand(command, options = {}) { |
| 35 | return execSync(command, { |
| 36 | cwd: __dirname, |
| 37 | encoding: "utf8", |
| 38 | stdio: "pipe", |
| 39 | ...options, |
| 40 | }); |
| 41 | } |
| 42 | |
| 43 | console.log("🧪 Running smoke tests for bundled CLI...\n"); |
| 44 |