AntiPattern
Blocking Async Operations
blocking-io-in-async
Blocking calls inside async code—thread sleeps, synchronous HTTP libraries, or awaiting a coroutine-returning mock—freeze the event loop or break async context handling, so other tasks don’t progress and tests/reporting become misleading.