//! Integration tests for Tauri commands. //! //! These tests verify the command layer behavior using an in-memory SQLite database. //! Since commands are thin wrappers around repositories, we focus on: //! - Input validation //! - Correct repository method calls //! - Response transformations mod contact_tests; mod day_planning_tests; mod email_tests; mod event_tests; mod export_tests; mod project_tests; mod snooze_tests; mod task_tests; mod time_tracking_tests;