does anybody know if I can configure kotest in a w...
# announcements
p
does anybody know if I can configure kotest in a way that some tests are disabled but can still be executed by manually launching them in IDEA? (I want to use these kind of “manual tests” for running custom code fragments during development)
b
Why not just have multiple fun main() in test sourceSet instead?
p
that would work but I would like some kind of namespacing and keyword “namespace” does not yet exist in kotlin … also having multiple main()s in one file will cause a collision and I am looking for some alternative.
the namespace should primarily give an idea what the snippet is supposed to do , e.g. ” fun createCustomerInDevelopDatabaseAndCheckIt()” would be a sample
s
Could add an option to do this.