Using Rubymine to run all the Cucumber tests in a folder, the progress bar has no total number of tests, so it just sits at halfway done all the way through. Rspec tests show the total number and the progress bar works fine.
How can I fix this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Unfortunately that’s not possible. RSpec does count examples before running them reporting actual examples count (see BaseFormatter.start). Cucumber reports tests as they run, without counting, fully relying on gherkin parser. So it’s almost impossible to count them before they’re all executed.