summaryrefslogtreecommitdiff
path: root/tasks/cucumber.rake
blob: 0340481fe7b0ed454fecee940b5e7bee04387591 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

begin
  require 'cucumber/rake/task'
  Cucumber::Rake::Task.new :features do |t|
    t.cucumber_opts = %w(-f progress)
    t.cucumber_opts << '--no-color' if ENV['CI']
  end
rescue LoadError
  warn $!.message
end