From documentation we can read:
waitForAsync(fn: Function): (done: any) => any
Wraps a test function in an asynchronous test zone. The test will automatically complete when all asynchronous calls within this zone are done. Can be used to wrap an inject call.
I could not understand, when to use waitForAsync
function? What's the difference between waitForAsync
vs (async
or fakeAsync
)?
In Angular 10.1.0,
waitForAsync()
has replacedasync()
to avoid confusion, but is otherwise exactly the same. Any documentation you see that discusses usingasync()
will also apply towaitForAsync()
.async()
has been marked as deprecated and will be removed entirely in version 12.