ui: remove legacy local worker projection

This commit is contained in:
2026-06-27 18:31:17 +09:00
parent 62420b7cc4
commit 135667417b
9 changed files with 108 additions and 847 deletions
+3 -5
View File
@@ -564,14 +564,12 @@ fn diagnostic(
#[cfg(test)]
mod tests {
use super::*;
use crate::hosts::{EmbeddedWorkerRuntime, LocalWorkerRuntime, RuntimeRegistry};
use crate::hosts::{EmbeddedWorkerRuntime, RuntimeRegistry};
#[test]
fn companion_spawns_visible_worker_and_records_providerless_turn() {
let registry = RuntimeRegistry::for_workspace(
LocalWorkerRuntime::new("local:test", "/workspace/project", None),
EmbeddedWorkerRuntime::new_memory("local:test"),
);
let registry =
RuntimeRegistry::for_workspace(EmbeddedWorkerRuntime::new_memory("local:test"));
let registry = Arc::new(registry);
let companion = CompanionConsole::new(registry.clone());