You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
371 B
14 lines
371 B
# frozen_string_literal: true
|
|
|
|
if Rake::Task.task_defined?('spec:system')
|
|
namespace :spec do
|
|
task :enable_system_specs do # rubocop:disable Rails/RakeEnvironment
|
|
ENV['LOCAL_DOMAIN'] = 'localhost:3000'
|
|
ENV['LOCAL_HTTPS'] = 'false'
|
|
ENV['RUN_SYSTEM_SPECS'] = 'true'
|
|
end
|
|
end
|
|
|
|
Rake::Task['spec:system'].enhance ['spec:enable_system_specs']
|
|
end
|