Anyone got example kotlintest being use in a ktor ...
# kotlintest
h
Anyone got example kotlintest being use in a ktor project?
a
I'm using it, what's your issue?
simplest example is to setup both server and client side in initialization and test whatever you need. e.g.
Copy code
class TestCase : StringSpec({
    //setup server/client

    "test1" {
        //your test1
    }

    "test2" {
        //test2 :V
    }
})