Chatwoot/spec/factories/macros.rb
2022-07-19 17:37:00 +05:30

11 lines
215 B
Ruby

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