Error occurs while running this test ``` @Test ...
# ktor
h
Error occurs while running this test
Copy code
@Test
    fun testRoot() {
        withTestApplication({ configure() }) {
            handleRequest(HttpMethod.Get, "/test").apply {
                assertEquals(HttpStatusCode.OK, response.status())
                //assertEquals("HELLO WORLD!", response.content)
            }
        }
    }