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

13 lines
No EOL
414 B
Rust

// Terminal integration tests are currently disabled as they require
// significant refactoring to work with the current architecture.
// These tests need to be rewritten to work with the API client
// rather than directly testing terminal functionality.
#[cfg(test)]
mod tests {
#[test]
fn test_placeholder() {
// Placeholder test to keep the test file valid
assert_eq!(1 + 1, 2);
}
}