about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorMatt Jankowski <matt@jankowski.online>2023-02-27 10:35:47 -0500
committerGitHub <noreply@github.com>2023-02-27 16:35:47 +0100
commit9ee83a9f3bf5a20f30bf001019993a2eb262322f (patch)
treef9cf5a52b98c0eeffc78df47ac8501723bd35f93 /spec
parent4bb39ac3c37fc5319898300c1067bb47443d6041 (diff)
Add policies and serializers groups to simplecov output (#23897)
Diffstat (limited to 'spec')
-rw-r--r--spec/spec_helper.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index ddc872fc8..25f314002 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -5,8 +5,10 @@ GC.disable
 if ENV['DISABLE_SIMPLECOV'] != 'true'
   require 'simplecov'
   SimpleCov.start 'rails' do
-    add_group 'Services', 'app/services'
+    add_group 'Policies', 'app/policies'
     add_group 'Presenters', 'app/presenters'
+    add_group 'Serializers', 'app/serializers'
+    add_group 'Services', 'app/services'
     add_group 'Validators', 'app/validators'
   end
 end