Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions tests/config_auth_app_state_connectivity_e2e.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2804,7 +2804,6 @@ async fn worker_a_controller_schemas_are_fully_exposed() {
"openhuman.config_get_dashboard_settings",
"openhuman.config_get_data_paths",
"openhuman.config_get_dictation_settings",
"openhuman.config_get_meet_settings",
"openhuman.config_get_memory_sync_settings",
"openhuman.config_get_onboarding_completed",
"openhuman.config_get_privacy_mode",
Expand All @@ -2828,7 +2827,6 @@ async fn worker_a_controller_schemas_are_fully_exposed() {
"openhuman.config_update_composio_trigger_settings",
"openhuman.config_update_dictation_settings",
"openhuman.config_update_local_ai_settings",
"openhuman.config_update_meet_settings",
"openhuman.config_update_memory_settings",
"openhuman.config_update_memory_sync_settings",
"openhuman.config_update_model_settings",
Expand Down Expand Up @@ -3281,30 +3279,6 @@ async fn config_runtime_flags_settings_readbacks_and_validation_paths_are_exerci
Some(false)
);

ok(
&rpc(
&harness.rpc_base,
11_006,
"openhuman.config_update_meet_settings",
json!({ "auto_orchestrator_handoff": true }),
)
.await,
"update_meet_settings true",
);
let meet = rpc(
&harness.rpc_base,
11_007,
"openhuman.config_get_meet_settings",
json!({}),
)
.await;
assert_eq!(
payload(&meet, "get_meet_settings")
.get("auto_orchestrator_handoff")
.and_then(Value::as_bool),
Some(true)
);

let onboarding_before = rpc(
&harness.rpc_base,
11_008,
Expand Down
22 changes: 0 additions & 22 deletions tests/domain_modules_e2e.rs
Original file line number Diff line number Diff line change
Expand Up @@ -362,28 +362,6 @@ async fn config_agent_tools_and_threads_mutation_paths_round_trip() {
Some(false)
);

let meet = rpc(
&harness.rpc_base,
30_005,
"openhuman.config_update_meet_settings",
json!({ "auto_orchestrator_handoff": true }),
)
.await;
ok(&meet, "update_meet_settings");
let meet_get = rpc(
&harness.rpc_base,
30_006,
"openhuman.config_get_meet_settings",
json!({}),
)
.await;
assert_eq!(
payload(&meet_get, "get_meet_settings")
.get("auto_orchestrator_handoff")
.and_then(Value::as_bool),
Some(true)
);

let dictation = rpc(
&harness.rpc_base,
30_007,
Expand Down
Loading