Reputation: 11244
I am testing a call using the following code:
"status OK" in {
status(doFakeRequest) === OK
}
The call to status
gives the following compile error:
could not find implicit value for parameter timeout: akka.util.Timeout
Upvotes: 4
Views: 1326
Reputation: 11244
This is because the Helpers
functions have changed. The timeout can now be changed for each function.
I needed to add the following import:
import play.api.test.Helpers.defaultAwaitTimeout
Upvotes: 7