With Spring boot I am using ```@WebFluxTest``` but...
# spring
l
With Spring boot I am using
Copy code
@WebFluxTest
but I don't like how it is loading the Spring Boot Context, when I try to use
Copy code
@WebMvcTest
I get an error saying I don't have WebMvcTest dependencies, I suppose becasue I am using Flux I wouldn't add those, right? Is there a way to do the WebFluxTest without including the Spring Boot Context?