Compare commits

..

No commits in common. "f2aa75061b94a7561540677fd6fb3dff96b249dd" and "29dd469d3123719667f6e70995db356758804456" have entirely different histories.

2 changed files with 0 additions and 17 deletions

View File

@ -626,17 +626,4 @@ mod updater_tests {
assert!(!is_newer_version("", "1.0.0"));
assert!(!is_newer_version("1.0.0", ""));
}
#[test]
fn test_update_channel_default() {
let settings = AppSettings::default();
assert_eq!(settings.update_channel, "stable");
}
#[test]
fn test_update_channel_serialization() {
let settings = AppSettings::default();
let json = serde_json::to_string(&settings).unwrap();
assert!(json.contains("\"stable\""));
}
}

View File

@ -256,10 +256,6 @@ pub fn run() {
commands::system::get_sudo_config_status,
commands::system::test_sudo_password,
commands::system::clear_sudo_password,
commands::system::check_app_updates,
commands::system::install_app_updates,
commands::system::get_update_channel,
commands::system::set_update_channel,
// MCP Servers
mcp::commands::list_mcp_servers,
mcp::commands::create_mcp_server,