Looking for a Memory-Efficient Alternative to Awaitility for Handling Asynchronous Tasks in Tests
I frequently use Awaitility
in my tests to handle asynchronous operations. However, each Awaitility
call spawns threads, which results in high memory consumption when running large tests. I’m searching for an alternative solution that provides similar functionality but is more memory-efficient.