How do I supply an implicit value for an akka.stream.Materializer when sending a FakeRequest?
I’m trying to make sense of the error(s) I’m seeing below, and to learn how to fix it. could not find implicit value for parameter materializer: akka.Stream.Materializer val fut: Future[Result] = action.apply(fakeRequest).run ^ not enough arguments for method run (implicit materializer: akka.stream.Materializer)scala.concurrent.Future[play.api.mvc.Result]. Unspecified value parameter materializer. val fut: Future[Result] = action.apply(fakeRequest).run ^ Here is the … Read more