Are there plans to make shared ktor server stuff m...
# ktor
b
Are there plans to make shared ktor server stuff multiplatform? I use
testApplication
to test ktor client stuff, because I really don't like the ktor client mock api and with
testApplication
I can re-use type safe routes (
@Resource
). The problem is, that
testApplication
is only available for jvm and native and so I cant't test the client code on other platforms.
2
a
@e5l
e
We're looking forward to make it common in the future
b
@e5l Very cool, thank you! What is missing for making it common?
e
porting some stuff to
js
we have already have
native
and
jvm
implementations, only
js
is missing
b
does this also apply to ktor-server-test-host?
e
yep
Actually the platform part is quite small
b
Thank you very much for the information 🙂