Skip to main content

max / goingson

573 B · 23 lines History Blame Raw
1 //! Integration tests for Tauri commands.
2 //!
3 //! These tests verify the command layer behavior using an in-memory SQLite database.
4 //! Since commands are thin wrappers around repositories, we focus on:
5 //! - Input validation
6 //! - Correct repository method calls
7 //! - Response transformations
8
9 mod contact_tests;
10 mod day_planning_tests;
11 mod email_tests;
12 mod event_tests;
13 mod export_tests;
14 mod milestone_tests;
15 mod project_tests;
16 mod saved_views_tests;
17 mod search_tests;
18 mod snooze_tests;
19 mod stats_tests;
20 mod task_tests;
21 mod temp_security_tests;
22 mod time_tracking_tests;
23