We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bcd8b0 commit bd68cb7Copy full SHA for bd68cb7
elasticsearch-api/spec/spec_helper.rb
@@ -71,8 +71,12 @@ def self.included(context)
71
RSpec.configure do |config|
72
config.include(HelperModule)
73
config.formatter = 'documentation'
74
- config.color_mode = :on
75
config.add_formatter('RspecJunitFormatter', 'tmp/elasticsearch-api-junit.xml')
+ config.add_formatter(
76
+ 'RSpec::Core::Formatters::HtmlFormatter',
77
+ "tmp/elasticsearch-#{ENV['TEST_SUITE']}-#{RUBY_VERSION}.html"
78
+ )
79
+ config.color_mode = :on
80
end
81
82
class NotFound < StandardError; end
0 commit comments