use super::*;
use crate::tui_internal::history_cell;
use crate::tui_internal::history_cell::HistoryCell;
#[test]
fn desktop_thread_opened_history_snapshot() {
let cell = history_cell::new_info_event(
DESKTOP_THREAD_OPENED_MESSAGE.to_string(),
None,
);
insta::assert_snapshot!("desktop_thread_opened_history", render_cell(&cell));
}
#[test]
fn desktop_thread_open_error_history_snapshot() {
let cell = history_cell::new_error_event(desktop_thread_open_error_message("launch failed"));
insta::assert_snapshot!("desktop_thread_open_error_history", render_cell(&cell));
}
fn render_cell(cell: &impl HistoryCell) -> String {
let lines = cell.display_lines( 80);
lines
.iter()
.map(ToString::to_string)
.collect::<Vec<_>>()
.join("\n")
}