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 a423b92 commit 853280dCopy full SHA for 853280d
spec/spec_helper.rb
@@ -1,6 +1,13 @@
1
if ENV["CI"]
2
require "simplecov"
3
- SimpleCov.start
+ require "simplecov_json_formatter"
4
+ SimpleCov.start do
5
+ formatter SimpleCov::Formatter::MultiFormatter.new([
6
+ SimpleCov::Formatter::JSONFormatter,
7
+ SimpleCov::Formatter::HTMLFormatter,
8
+ ])
9
+ add_filter "/spec/"
10
+ end
11
end
12
13
require "qiita-markdown"
0 commit comments