kotlin
kotlin copied to clipboard
KT-52724 add timeout flag to dry-run and allow dry-run to be skipped altogether
Issue: https://youtrack.jetbrains.com/issue/KT-52724
- The
--timeout
flag is missing in the dry-run of the underlying mocha command - Since dry-run actually runs all the tests (just without the reporter) it might be feasible to skip it altogether.
dry-run
should not run tests, it implements kotlin-test
interface methods suite
and test
with just empty bodies.
It means that tests in fuct does not run.
Why we may need timeout
for such cases?
As for skipping dry-run, possibly it can be feasible. Could you please explain case for this?