Chatwoot/spec/factories/notes.rb

11 lines
156 B
Ruby
Raw Normal View History

2021-06-21 09:46:26 +00:00
# frozen_string_literal: true
FactoryBot.define do
factory :note do
content { 'Hey welcome to chatwoot' }
account
user
contact
end
end