Chatwoot/spec/factories/channel/channel_api.rb
2020-07-21 12:15:24 +05:30

9 lines
250 B
Ruby

FactoryBot.define do
factory :channel_api, class: 'Channel::Api' do
webhook_url { 'http://example.com' }
account
after(:create) do |channel_api|
create(:inbox, channel: channel_api, account: channel_api.account)
end
end
end