-
When running a file with a lot of scenarios, the failed tests are interleaved with output from all the successful scenarios, requiring quite a bit of scrolling to reach the failure reasons. Is there a way to filter just the failed scenarios from the cli or from the setup code? |
Beta Was this translation helpful? Give feedback.
Answered by
tyranron
Sep 4, 2025
Replies: 1 comment 1 reply
-
@sdht0 see the "Output" > "Terminal" > "Repeating failed and/or skipped steps" section of the Book: #[tokio::main]
async fn main() {
MyWorld::cucumber()
.repeat_failed() // <---- this
.run_and_exit("tests/features/book/output/terminal_repeat_failed.feature")
.await;
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sdht0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@sdht0 see the "Output" > "Terminal" > "Repeating failed and/or skipped steps" section of the Book: