There's many tests within the core test suite relying on await Promise.resolve(). This is far from ideal since new async actions require more wait code; making it not super robust to refactors and code change.
I'd like to find a better way to hook into the library to detect when the code is waiting.
There's many tests within the core test suite relying on
await Promise.resolve()
. This is far from ideal since new async actions require more wait code; making it not super robust to refactors and code change.I'd like to find a better way to hook into the library to detect when the code is waiting.