Files
clientsflow/research/chatwoot/spec/factories/portals.rb

8 lines
141 B
Ruby

FactoryBot.define do
factory :portal, class: 'Portal' do
account
name { Faker::Book.name }
slug { SecureRandom.hex }
end
end