-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Neither feature nor scenario headings are printed after updating to 0.20 #299
Comments
Probably related to #282 |
I've bisected the commits between https://github.com/cucumber-rs/cucumber/releases/tag/v0.20.0 and https://github.com/cucumber-rs/cucumber/releases/tag/v0.19.0. This and this are changes (introduced in #258) that seem to cause the new, wrong behavior. As I don't know the exact reasoning behind those changes, I'll ping @ilslv for elaboration/investigation 🙂 |
Probably related: tracing output gets overwritten by this same "bug" it seems. Disabling color keeps the tracing output, enabling color overwrites it with blank lines. |
Additionally: - use deterministic order of possible matches in `AmbiguousMatchError` - reduce count of cursor moves in `writer::out::WriteStrExt::clear_last_lines()` - unify code style of lines accessing `writer::Basic` Co-authored-by: 50U10FCA7 <[email protected]>
@serzhshakur @berkes released as 0.20.1. |
Great, thank you, works as expected now 👍 |
After updating to cucumber-rs 0.20 neither feature, nor scenario, nor rule headings are printed to a console when running tests with colored output. See the comparison below:
with cucumber-rs 0.19
with cucumber-rs 0.20
However heading are printed when running tests with
--color=never
You can check this repo for the reference
The text was updated successfully, but these errors were encountered: