Chatwoot/spec/factories/messages.rb

13 lines
212 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :message do
content { 'Message' }
status { 'sent' }
message_type { 'incoming' }
account
inbox
conversation
user
end
end