Write the code that will create a custom HTTP client:
@Test
fun testRegistration() = testApplication {
val client = /* your code here */ {
install(ContentNegotiation) {
jackson {
enable(SerializationFeature.INDENT_OUTPUT)
}
}
}
}