Ilya Salauyeu
Ilya Salauyeu
Thank you for the reproduction repo! I'll definitely take a look hopefully this weekend.
not yet, unfortunately 😢
To be fair, I don't quite understand what you are suggesting. > either simply mass-replace every use of `.run(` with `.run_and_exit(`; As you mentioned earlier, book already uses `.run_and_exit()` for...
We have multiple ways of achieving serial execution of scenarios: 1. [`@serial` tag оn features/scenarios](https://cucumber-rs.github.io/cucumber/main/writing/tags.html#isolated-execution) 2. [`--concurrency` CLI option](https://cucumber-rs.github.io/cucumber/main/cli.html) 3. [`max_concurrent_scenarios()` builder option](https://docs.rs/cucumber/latest/cucumber/struct.Cucumber.html#method.max_concurrent_scenarios) --- Or are you trying to achieve...