We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
rspec_html_reporter.rb at line 60
if os == :windows file_path = data[0] + ':' + data[1] line_number = data[2].to_i else file_path = data.first line_number = data[1].to_i end
I ran on windows, and using rspec with version 3.8.0, found that get file_path & line_number should be same with other OS, like:
file_path = data.first line_number = data[1].to_i
Otherwise, it will throw exception : No such file Error at line 67: lines = File.readlines(file_path)
Please kindly confirm it, thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
rspec_html_reporter.rb at line 60
I ran on windows, and using rspec with version 3.8.0, found that get file_path & line_number should be same with other OS, like:
Otherwise, it will throw exception : No such file Error at line 67: lines = File.readlines(file_path)
Please kindly confirm it, thanks.
The text was updated successfully, but these errors were encountered: