flutter-testing
Installation
SKILL.md
Flutter Testing
Write and maintain Flutter tests at the right level: unit tests for business logic, widget tests for screens and components, integration tests for critical flows, and golden tests for visual regression.
Test Pyramid
[Integration Tests] — critical end-to-end flows; device/emulator required; CI on merge only
[Widget Tests] — screens, components, interactions; run every commit
[Unit Tests] — business logic, providers, cubits, utilities; run every commit
Target distribution: 70%+ unit | 20–25% widget | 5–10% integration.