Chatwoot/spec/factories/macros.rb

12 lines
215 B
Ruby
Raw Normal View History

2022-07-19 12:07:00 +00:00
FactoryBot.define do
factory :macro do
account
name { 'wrong_message_actions' }
actions do
[
{ 'action_name' => 'add_label', 'action_params' => %w[wrong_chat] }
]
end
end
end