Why is <development mode enabled in tests> instead...
# ktor
e
Why is development mode enabled in tests instead of using whatever it is set to in the environment, config file, or JVM?
a
Because of an assumption that the test environment is a development environment. What problems does it cause for you?
e
Because the development environment removes some guardrails, whereas tests are written to simulate production.
a
Do you mean that you use the development mode as a flag to lose some constraints?