#[cfg(feature = "tauri")]
#[test]
fn test_core_types_implement_specta_type() {
use specta::Type;
fn assert_type<T: Type>() {}
assert_type::<pitwall::SessionInfo>();
assert_type::<pitwall::UpdateRate>();
assert_type::<pitwall::VariableSchema>();
assert_type::<pitwall::VariableInfo>();
assert_type::<pitwall::VariableType>();
}
#[cfg(not(feature = "tauri"))]
#[test]
fn test_tauri_feature_disabled() {
let _ = pitwall::UpdateRate::Native;
}