mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 04:27:53 +00:00
7 lines
134 B
Ruby
7 lines
134 B
Ruby
FactoryBot.define do
|
|
factory :super_admin do
|
|
email { "admin@#{SecureRandom.uuid}.com" }
|
|
password { 'Password1!' }
|
|
end
|
|
end
|