Remove test for handling input via key events

Max Brunsfeld created

Now, textual input is handled by a different code path than other key events.

Change summary

crates/terminal/src/connection/keymappings.rs | 14 --------------
1 file changed, 14 deletions(-)

Detailed changes

crates/terminal/src/connection/keymappings.rs 🔗

@@ -313,20 +313,6 @@ mod test {
         assert_eq!(to_esc_str(&pagedown, &any), Some("\x1b[6~".to_string()));
     }
 
-    #[test]
-    fn test_multi_char_fallthrough() {
-        let ks = Keystroke {
-            ctrl: false,
-            alt: false,
-            shift: false,
-            cmd: false,
-
-            key: "🖖🏻".to_string(), //2 char string
-        };
-
-        assert_eq!(to_esc_str(&ks, &TermMode::NONE), Some("🖖🏻".to_string()));
-    }
-
     #[test]
     fn test_application_mode() {
         let app_cursor = TermMode::APP_CURSOR;