/** * Command-surface (Commander parser) tests for the `totem mail` wiring — * the poll flags on the parent command (mmnto-ai/totem#2204) and the * `mail reply`/`mail mark` subcommands (mmnto-ai/totem#2396, CR outside-diff * on index.ts 881-931). * * `index.ts` builds its `program` at module scope and auto-runs `parseAsync` * on import, so it cannot be imported without executing the CLI against the * test runner's argv. This reconstructs the EXACT wiring — the parent poll * action's `as → asSeat` destructure rename (#2204), the `--no-mark` * boolean-negation translation (`const { mark, ...rest } = opts; * noMark: mark === false`), and the `mail mark ` positional dispatch — * with the command-module functions stubbed, verifying the Commander parser * produces the options the lib is invoked with. Kept intentionally light * (parser-level, no real fs/network). */ export {}; //# sourceMappingURL=mail-cli-wiring.test.d.ts.map