fix dioxus-tui tests

This commit is contained in:
Evan Almloff 2023-04-25 15:16:02 -05:00
parent eb4abca022
commit 36a2c863bf
2 changed files with 5 additions and 1 deletions

View file

@ -21,7 +21,7 @@ dioxus-native-core-macro = { path = "../native-core-macro", version = "^0.3.0" }
dioxus-hot-reload = { path = "../hot-reload", optional = true }
rink = { path = "../rink" }
crossterm = "0.23.0"
crossterm = "0.26.0"
tokio = { version = "1.15.0", features = ["full"] }
futures = "0.3.19"
taffy = "0.2.1"

View file

@ -47,10 +47,14 @@ fn key_down() {
tui_ctx.inject_event(Event::Key(KeyEvent {
code: KeyCode::Tab,
modifiers: KeyModifiers::NONE,
kind: crossterm::event::KeyEventKind::Press,
state: crossterm::event::KeyEventState::NONE,
}));
tui_ctx.inject_event(Event::Key(KeyEvent {
code: KeyCode::Char('a'),
modifiers: KeyModifiers::NONE,
kind: crossterm::event::KeyEventKind::Press,
state: crossterm::event::KeyEventState::NONE,
}));
cx.render(rsx! {
div {