I am writing a simple test that is similar as what...
# ktor
l
I am writing a simple test that is similar as what is in ktor testing example.. but it doesn't appear to be working..
Copy code
fun aTest() = withTestApplication{
        val call: TestApplicationCall = handleRequest(HttpMethod.Get, "/hello")
        assertEquals(HttpStatusCode.OK,call.response.status())

    }
I started the server and tried it with reset client and all seems well but not sure what I am missing from test