Hi, i have a question regarding testApplication ds...
# ktor
j
Hi, i have a question regarding testApplication dsl. Is it being reused amongst every test?
Copy code
fun my_test = testApplication {} fun my_test_2 = testApplication {}
a
The
testApplication
method, every time its called, starts a new test server .
1