()
| 184 | |
| 185 | #[tokio::test] |
| 186 | async fn test_detect_node_tech_stack() { |
| 187 | let temp_dir = TempDir::new().unwrap(); |
| 188 | |
| 189 | // Create package.json file |
| 190 | tokio::fs::write(temp_dir.path().join("package.json"), "") |
| 191 | .await |
| 192 | .unwrap(); |
| 193 | |
| 194 | let result = detect_stack(temp_dir.path()).await.unwrap(); |
| 195 | assert_eq!(result, "node"); |
| 196 | } |
| 197 | |
| 198 | #[tokio::test] |
| 199 | async fn test_detect_go_tech_stack() { |
nothing calls this directly
no test coverage detected