Closed as not planned
Description
I'm trying to add a context path (e.g., /my-app) to the requests generated by Spring REST Docs when using WebTestClient. Currently, the generated cURL commands do not include the context path:
$ curl 'http://localhost:4444/accounts/123/dummy' -i -X GET
I would like them to reflect the context path, like this:
$ curl 'http://localhost:4444/my-app/accounts/123/dummy' -i -X GET
How can I achieve this?
Reference
Thank you!