add is_composing check to desktop headless tests

This commit is contained in:
Ege Gungordu 2024-01-23 18:33:28 +03:00
parent d3ded8c677
commit 8887d674ed

View file

@ -154,7 +154,7 @@ fn app(cx: Scope) -> Element {
ctrlKey: false,
metaKey: false,
shiftKey: false,
isComposing: false,
isComposing: true,
which: 65,
bubbles: true,
})"#,
@ -356,6 +356,7 @@ fn app(cx: Scope) -> Element {
assert_eq!(event.data.code().to_string(), "KeyA");
assert_eq!(event.data.location(), Location::Standard);
assert!(event.data.is_auto_repeating());
assert!(event.data.is_composing());
received_events.modify(|x| *x + 1)
}
}
@ -368,6 +369,7 @@ fn app(cx: Scope) -> Element {
assert_eq!(event.data.code().to_string(), "KeyA");
assert_eq!(event.data.location(), Location::Standard);
assert!(!event.data.is_auto_repeating());
assert!(!event.data.is_composing());
received_events.modify(|x| *x + 1)
}
}
@ -380,6 +382,7 @@ fn app(cx: Scope) -> Element {
assert_eq!(event.data.code().to_string(), "KeyA");
assert_eq!(event.data.location(), Location::Standard);
assert!(!event.data.is_auto_repeating());
assert!(!event.data.is_composing());
received_events.modify(|x| *x + 1)
}
}