Files
chatwoot/spec/factories/accounts.rb
Pranav Raj S ebd5fbef17 chore: Use feature_flags attribute instead of settings_flags (#6820)
* chore: Use feature_flag instead of settings_flag

* Remove unnecessary changes
2023-04-04 09:56:58 -07:00

11 lines
218 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :account do
sequence(:name) { |n| "Account #{n}" }
status { 'active' }
domain { 'test.com' }
support_email { 'support@test.com' }
end
end