mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* Fix desktop CLI passthrough tty handling * Fix desktop daemon manager test drift * Update daemon stop test after main merge * test(cli): isolate npx cache per CLI test
7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
import { runCli } from "./run.js";
|
|
|
|
const exitCode = await runCli(process.argv.slice(2), {
|
|
nodeArgv: [process.argv[0] ?? "node", process.argv[1] ?? "paseo"],
|
|
});
|
|
process.exitCode = exitCode;
|