Skip to content

Commit

Permalink
fix: fixing broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wllfaria committed May 12, 2024
1 parent 3ede0fd commit 7019a49
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Binary file modified extra/examples/editor.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 0 additions & 4 deletions tui/src/components/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ mod tests {
.title("my input".to_string())
.title_style(Style::default().fg(colors.normal.white))
.borders(Borders::ALL)
.border_type(BorderType::Rounded)
.border_style(Style::default().fg(colors.primary.hover)),
)
.style(Style::default().fg(colors.normal.magenta));
Expand All @@ -107,7 +106,6 @@ mod tests {
.title("my input".to_string())
.title_style(Style::default().fg(colors.normal.white))
.borders(Borders::ALL)
.border_type(BorderType::Rounded)
.border_style(Style::default().fg(colors.bright.magenta)),
)
.style(Style::default().fg(colors.normal.magenta));
Expand All @@ -128,7 +126,6 @@ mod tests {
.title("my input".to_string())
.title_style(Style::default().fg(colors.normal.white))
.borders(Borders::ALL)
.border_type(BorderType::Rounded)
.border_style(Style::default().fg(colors.primary.hover)),
)
.style(Style::default().fg(colors.normal.white));
Expand All @@ -148,7 +145,6 @@ mod tests {
.title("my input".to_string())
.title_style(Style::default().fg(colors.normal.white))
.borders(Borders::ALL)
.border_type(BorderType::Rounded)
.border_style(Style::default().fg(colors.bright.magenta)),
)
.style(Style::default().fg(colors.normal.white));
Expand Down
2 changes: 2 additions & 0 deletions tui/src/screen_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,9 @@ mod tests {
let (_guard, path) = setup_temp_schemas(10);
let schemas = schema::schema::get_schemas(path).unwrap();
let config = config::load_config();
let (tx, _) = tokio::sync::mpsc::unbounded_channel::<Command>();
let mut sm = ScreenManager::new(initial, &colors, schemas, &config).unwrap();
_ = sm.register_command_handler(tx.clone());
assert_eq!(sm.curr_screen, Screens::Dashboard);

sm.handle_command(command);
Expand Down
10 changes: 6 additions & 4 deletions tui/tests/dashboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,12 +318,12 @@ fn test_draw_form_popup() {
"新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 Name───────────────────────────── 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 Name───────────────────────────── 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 │My awesome API │ 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 ───────────────────────────────── 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 Description────────────────────── 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 ───────────────────────────────── 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 Description────────────────────── 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 │Request testing │ 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 ───────────────────────────────── 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 ───────────────────────────────── 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 ╭────────╮ ╭────────╮ 新 新 新 新 新 新 新 新 新 新 新 ",
"新 新 新 新 新 新 新 新 新 新 │ Create │ │ Cancel │ 新 新 新 新 新 新 新 新 新 新 新 ",
Expand All @@ -350,6 +350,8 @@ fn test_draw_form_popup() {
.map(|row| row.iter().map(|cell| cell.symbol()).collect::<String>())
.collect::<Vec<_>>();

println!("{:#?}", frame.buffer_mut().content());

assert_eq!(rendered, expected);
}

Expand Down

0 comments on commit 7019a49

Please sign in to comment.