mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 02:32:29 +00:00
9 lines
252 B
Ruby
9 lines
252 B
Ruby
require 'simplecov'
|
|
require 'simplecov_json_formatter'
|
|
|
|
# Configure SimpleCov to emit JSON for Qlty and HTML locally if needed
|
|
SimpleCov.formatter = SimpleCov::Formatter::JSONFormatter
|
|
SimpleCov.start 'rails' do
|
|
SimpleCov.coverage_dir 'coverage'
|
|
end
|