Kyle Florence
Kyle Florence
I am also experiencing this problem.
A simple fix for this might be to just expose `def arguments: Seq[Binding[T]]` on the trait.
Until #76 is merged, the following can be used as a workaround: ```scala @tailrec def getArguments(index: Int, arguments: Seq[Any]): Seq[Any] = { options.argument(index) match { case FullBinding(v) => getArguments(index +...
@mwunsch @timcharper what's the ETA on getting changes like this published?
+1 to making "sass" executable/path configurable.
I'm not sure what the best way to reserve a port to use in the tests on would be. I could use [ServerSocket](https://docs.oracle.com/javase/8/docs/api/java/net/ServerSocket.html) to find an available port, but between...
@octonato correct, Optic will handle port assignment for us (it will reserve an open port). Mostly I was wondering about how I can properly test these changes in the Lagom...
I have started a project for managing ports across tests: https://github.com/kflorence/port-manager (not yet published to maven, but will be soon). Maybe it will be useful for the Lagom team as...
I'm not sure if the documentation needs to be updated, but if so I will do that next.
It seems this change will not be binary compatible: ``` [error] filter with: ProblemFilters.exclude[ReversedMissingMethodProblem]("com.lightbend.lagom.javadsl.testkit.ServiceTest#Setup.sslPort") [error] lagom-scaladsl-testkit: Failed binary compatibility check against com.lightbend.lagom:lagom-scaladsl-testkit_2.12:1.6.1! Found 11 potential problems (filtered 1) [error] *...