git.lucas.co / cce-ui
GPU-accelerated UI toolkit (Vulkan)
git clone https://git.lucas.co/cce-ui.git

commitebea3bd4102474f67d5a588e5226bfce17f63f87
parent21945fff36
authorLucas Galante <[email protected]>
date2026-07-01 18:51
Remove flaky test_real_config_kdl from cce-ui tests

 src/config.rs | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/src/config.rs b/src/config.rs
index 8d9e724..14eefd9 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -538,16 +538,6 @@ mod tests {
         assert_eq!(ty2, Some("bool".to_string()));
     }
 
-    #[test]
-    fn test_real_config_kdl() {
-        let path = "/home/lsgalante/.config/cce/config.kdl";
-        if std::path::Path::new(path).exists() {
-            let content = std::fs::read_to_string(path).unwrap();
-            let ty = get_kdl_type_annotation(&content, "input.accel_profile");
-            println!("REAL CONFIG ACCEL PROFILE ANNO: {:?}", ty);
-            assert_eq!(ty, Some("menu:flat,adaptive,none,custom".to_string()));
-        }
-    }
 }
 
 pub fn value_to_kdl(key: &str, val: &serde_json::Value, indent: usize) -> String {