Chatwoot/spec/factories/notes.rb
2021-06-21 15:16:26 +05:30

10 lines
156 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :note do
content { 'Hey welcome to chatwoot' }
account
user
contact
end
end