0.13.1
- extraction of
Json
from theSession
now requires an additional import
session.getJson("myKey")
becomes
import com.github.agourlay.cornichon.json.CornichonJson._
session.getJson("myKey")
HttpService.requestEffect
can now ignore headers coming from thewith-headers
session key
http.requestEffect(
request = HttpRequest.post("/oauth/token")
ignoreFromWithHeaders = ByNames("Authorization" :: Nil)
)
- @OlegIlyenko added the ability to focus on specific scenario during testing #158