@@ -7288,6 +7288,7 @@ mod tests {
72887288 use super :: * ;
72897289
72907290 #[ test]
7291+ #[ cfg_attr( windows, ignore = "TUI behavior differs on Windows" ) ]
72917292 fn test_event_loop_new ( ) {
72927293 let app_state = AppState :: new ( ) ;
72937294 let event_loop = EventLoop :: new ( app_state) ;
@@ -7297,6 +7298,7 @@ mod tests {
72977298 }
72987299
72997300 #[ test]
7301+ #[ cfg_attr( windows, ignore = "TUI behavior differs on Windows" ) ]
73007302 fn test_event_loop_stop ( ) {
73017303 let app_state = AppState :: new ( ) ;
73027304 let event_loop = EventLoop :: new ( app_state) ;
@@ -7316,6 +7318,7 @@ mod tests {
73167318 }
73177319
73187320 #[ test]
7321+ #[ cfg_attr( windows, ignore = "TUI behavior differs on Windows" ) ]
73197322 fn test_get_action_context_chat ( ) {
73207323 let mut app_state = AppState :: new ( ) ;
73217324 app_state. focus = FocusTarget :: Chat ;
@@ -7325,6 +7328,7 @@ mod tests {
73257328 }
73267329
73277330 #[ test]
7331+ #[ cfg_attr( windows, ignore = "TUI behavior differs on Windows" ) ]
73287332 fn test_get_action_context_sidebar ( ) {
73297333 let mut app_state = AppState :: new ( ) ;
73307334 app_state. focus = FocusTarget :: Sidebar ;
@@ -7359,6 +7363,7 @@ mod tests {
73597363 }
73607364
73617365 #[ test]
7366+ #[ cfg_attr( windows, ignore = "TUI behavior differs on Windows" ) ]
73627367 fn test_event_loop_with_action_mapper ( ) {
73637368 let app_state = AppState :: new ( ) ;
73647369 let _mapper = ActionMapper :: default_bindings ( ) ;
@@ -7398,6 +7403,7 @@ mod tests {
73987403 }
73997404
74007405 #[ test]
7406+ #[ cfg_attr( windows, ignore = "TUI behavior differs on Windows" ) ]
74017407 fn test_handle_scroll_chat ( ) {
74027408 let app_state = AppState :: new ( ) ;
74037409 let mut event_loop = EventLoop :: new ( app_state) ;
@@ -7432,6 +7438,7 @@ mod tests {
74327438 }
74337439
74347440 #[ test]
7441+ #[ cfg_attr( windows, ignore = "TUI behavior differs on Windows" ) ]
74357442 fn test_handle_click_focus_changes ( ) {
74367443 let app_state = AppState :: new ( ) ;
74377444 let mut event_loop = EventLoop :: new ( app_state) ;
0 commit comments