FutureMatchable

implicit class FutureMatchable[T](m: Matcher[T])(implicit ee: ExecutionEnv)

add an await method to any matcher Matcher[T] so that it can be transformed into a Matcher[Future[T]]

class Object
trait Matchable
class Any

Value members

Concrete methods

def await: Matcher[Future[T]]
def await(retries: Int, timeout: FiniteDuration): Matcher[Future[T]]
def awaitFor(timeout: FiniteDuration): Matcher[Future[T]]
def retryAwait(retries: Int): Matcher[Future[T]]