Skip to main content

max / goingson

469 B · 18 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 project_tests;
15 mod snooze_tests;
16 mod task_tests;
17 mod time_tracking_tests;
18