mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-29 12:00:32 +00:00
12 lines
224 B
Ruby
12 lines
224 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.configure do |config|
|
|
# Enable FactoryBot syntax
|
|
config.include FactoryBot::Syntax::Methods
|
|
|
|
# Load definitions
|
|
config.before(:suite) do
|
|
FactoryBot.find_definitions
|
|
end
|
|
end
|