Chatwoot/spec/factories/reporting_events.rb
Sojan Jose 4260441f8c
Chore: clean up Reporting Events (#4044)
Tech debt clean up

Fixes #4057

Co-authored-by: Aswin Dev P S <aswin@chatwoot.com>
2022-02-28 18:16:12 +05:30

10 lines
187 B
Ruby

FactoryBot.define do
factory :reporting_event do
name { 'MyString' }
value { 1.5 }
account_id { 1 }
inbox_id { 1 }
user_id { 1 }
conversation_id { 1 }
end
end