()
| 37 | } |
| 38 | |
| 39 | fn is_embedded_webdriver_mode() -> bool { |
| 40 | (cfg!(debug_assertions) || cfg!(feature = "devtools")) |
| 41 | && std::env::var_os("BITFUN_WEBDRIVER_PORT").is_some() |
| 42 | } |
| 43 | |
| 44 | fn resolve_logs_root() -> PathBuf { |
| 45 | if let Some(path) = std::env::var_os("BITFUN_LOG_DIR").map(PathBuf::from) { |
no outgoing calls
no test coverage detected