llm: Clarify @Suppress("MaxLineLength") usage in testing skill (#6685)

This commit is contained in:
Patrick Honkonen
2026-03-18 02:50:00 -04:00
committed by GitHub
parent 183255cbff
commit 6824af48e1

View File

@@ -263,6 +263,7 @@ Common testing mistakes in Bitwarden. **For complete details and examples:** See
- **Null stream testing** - Test null returns from ContentResolver operations
- **bufferedMutableSharedFlow** - Use with `.onSubscription { emit(state) }` in Fakes
- **Test factory methods** - Accept domain state types, not SavedStateHandle
- **@Suppress("MaxLineLength")** - Only add when the `fun` declaration line **actually exceeds 100 chars** — do not copy the pattern blindly
---