tauri-impl-testing
Installation
SKILL.md
tauri-impl-testing
Quick Reference
Testing Layers
| Layer | Tool | What It Tests |
|---|---|---|
| Rust Unit Tests | cargo test |
Command logic, state management, error handling |
| Frontend Unit Tests | Vitest / Jest + @tauri-apps/api/mocks |
UI components, IPC call handling |
| Integration Tests | Vitest / Jest + mockIPC | Frontend-backend contract |
| E2E Tests | WebDriver (Selenium/Playwright) | Full application behavior |
Mock API Imports
import { mockIPC, mockWindows, mockConvertFileSrc, clearMocks } from '@tauri-apps/api/mocks';