Closed bbortt closed 11 months ago
we have a lot of these in our code:
scenario.$(scenario.http() .send() .response(HttpStatus.OK) .message() .contentType(MediaType.APPLICATION_JSON_VALUE)); .body(myJsonObject)
the following would help for sure:
scenario.$( scenario.http() .sendOkJson(myJsonObject) );
more to come in the future, maybe...
we have a lot of these in our code:
the following would help for sure:
more to come in the future, maybe...