Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Play Framework 2.2 - could not find implicit value for parameter timeout

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

like image 794
EECOLOR Avatar asked Mar 23 '23 08:03

EECOLOR


1 Answers

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
like image 71
EECOLOR Avatar answered Apr 13 '23 16:04

EECOLOR