1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-24 22:45:27 +00:00
mastodon/lib/tasks/spec.rake

11 lines
291 B
Ruby

# frozen_string_literal: true
if Rake::Task.task_defined?('spec:system')
namespace :spec do
task :enable_system_specs do # rubocop:disable Rails/RakeEnvironment
ENV['RUN_SYSTEM_SPECS'] = 'true'
end
end
Rake::Task['spec:system'].enhance ['spec:enable_system_specs']
end