I’m pretty stuck on something, getting the followi...
# announcements
d
I’m pretty stuck on something, getting the following failure on a micronaut test
Copy code
Failed to inject value for parameter [client] of class
I’m trying to inject a client in the constructor of a
StringSpec
test
Copy code
@Client(value = "/") private val client: RxHttpClient,
I just can’t work it out.
ah I was missing
Copy code
testRuntimeOnly("io.micronaut:micronaut-http-server-netty")
difficult to work out