Chatwoot/spec/factories/articles.rb
Sojan Jose 8b0e95ece8
fix: Flakiness in CI pipeline (#5562)
- Fixing the recent flakiness in CI pipelines
2022-10-05 10:59:31 -07:00

12 lines
285 B
Ruby

FactoryBot.define do
factory :article, class: 'Article' do
account_id { 1 }
category_id { 1 }
author_id { 1 }
title { "#{Faker::Movie.title} #{SecureRandom.hex}" }
content { 'MyText' }
description { 'MyDescrption' }
status { 1 }
views { 1 }
end
end