feat: expand Galaxy agent and remote tooling
Add Wormhole remote helpers, provider and agent improvements, filesystem diagnostics, model metadata support, and schema-aware settings IntelliSense.
This commit is contained in:
@@ -92,7 +92,7 @@ pub fn enter_local_subshell_command(shell: &str) -> TestStep {
|
||||
}
|
||||
|
||||
pub fn assert_subshell_banner_is_showing() -> TestStep {
|
||||
TestStep::new("Assert the Warpify banner is visible")
|
||||
TestStep::new("Assert the Wormhole banner is visible")
|
||||
.add_assertion(move |app, window_id| {
|
||||
let terminal_view = single_terminal_view(app, window_id);
|
||||
terminal_view.read(app, |view, _ctx| {
|
||||
@@ -102,7 +102,7 @@ pub fn assert_subshell_banner_is_showing() -> TestStep {
|
||||
.block_list_mut()
|
||||
.active_block()
|
||||
.block_banner(),
|
||||
Some(WithinBlockBanner::WarpifyBanner(..))
|
||||
Some(WithinBlockBanner::WormholeBanner(..))
|
||||
))
|
||||
})
|
||||
})
|
||||
@@ -132,10 +132,10 @@ pub fn assert_subshell_is_bootstrapped(tab_index: usize, pane_index: usize) -> T
|
||||
};
|
||||
|
||||
match rich_content_type {
|
||||
Some(RichContentType::WarpifySuccessBlock) => {}
|
||||
Some(RichContentType::WormholeSuccessBlock) => {}
|
||||
_ => {
|
||||
return AssertionOutcome::failure(
|
||||
"Warpify success block wasn't added to the blocklist".to_owned(),
|
||||
"Wormhole success block wasn't added to the blocklist".to_owned(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user