You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'd be nice to have the option to assert that a mocked function will be called in a defined timeout.
:meck.wait supports it pretty directly, should be a good fit to expect(mod) |> to(receive ...).
Maybe something like expect(mod) |> to(receive ..., within: 500)?
The text was updated successfully, but these errors were encountered:
It'd be nice to have the option to assert that a mocked function will be called in a defined timeout.
:meck.wait
supports it pretty directly, should be a good fit toexpect(mod) |> to(receive ...)
.Maybe something like
expect(mod) |> to(receive ..., within: 500)
?The text was updated successfully, but these errors were encountered: