fabro/lib/crates/fabro-cli/tests/it/cmd/mod.rs
Bryan Helmkamp 7fda2ee25b
fix(test): update snapshots for version and --prerelease flag
- Update VERSION filter regex to handle prerelease suffixes (e.g., 0.204.0-beta.1)
- Add VERSION filter to JSON snapshots in fabro_json_snapshot macro
- Fix attach test to use [VERSION] placeholder instead of hardcoded version
- Update upgrade help snapshot to include new --prerelease flag
- Change fake version in upgrade test from v0.176.3 to v999.0.0 to avoid collision
- Strip --watch-web from server start help (debug-only flag, varies by build)
- Gate test_panic module with #[cfg(debug_assertions)] (debug-only command)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-17 07:31:40 -04:00

72 lines
1 KiB
Rust

mod artifact_cp;
mod artifact_list;
mod attach;
mod config;
mod create;
mod diff;
mod discord;
mod docs;
mod doctor;
mod exec;
mod fabro;
mod fork;
mod graph;
mod inspect;
mod install;
mod json_global;
mod logs;
mod model;
mod model_list;
mod model_test;
mod parse;
mod pr;
mod pr_close;
mod pr_create;
mod pr_list;
mod pr_merge;
mod pr_view;
mod preflight;
mod provider;
mod provider_login;
mod ps;
mod render_graph;
mod repo;
mod repo_deinit;
mod repo_init;
mod resume;
mod rewind;
mod rm;
mod run;
mod runner;
mod sandbox_cp;
mod sandbox_preview;
mod sandbox_ssh;
mod secret;
mod secret_list;
mod secret_rm;
mod secret_set;
mod send_analytics;
mod send_panic;
mod server_start;
mod server_status;
mod server_stop;
mod start;
mod store;
mod store_dump;
pub(crate) mod support;
mod system;
mod system_df;
mod system_events;
mod system_info;
mod system_prune;
#[cfg(debug_assertions)]
mod test_panic;
mod top_level;
mod uninstall;
mod upgrade;
mod validate;
mod version;
mod wait;
mod workflow;
mod workflow_create;
mod workflow_list;