vibetunnel/tauri/src-tauri/tests/keychain_integration_test.rs
2025-06-23 14:58:10 +02:00

12 lines
No EOL
346 B
Rust

// Keychain integration tests are currently disabled as they require
// refactoring to work with the current architecture.
// The KeychainManager API needs to be updated for async usage.
#[cfg(test)]
mod tests {
#[test]
fn test_placeholder() {
// Placeholder test to keep the test file valid
assert_eq!(3 + 3, 6);
}
}