mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +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
 |