Sha256: f825aef4eba0e7f853038bc55a8b193789cb3ddf3c70000179e9e1f291689bad

Contents?: true

Size: 812 Bytes

Versions: 12

Compression:

Stored size: 812 Bytes

Contents

module KnapsackPro
  module Runners
    class CucumberRunner < BaseRunner
      def self.run(args)
        ENV['KNAPSACK_PRO_TEST_SUITE_TOKEN'] = KnapsackPro::Config::Env.test_suite_token_cucumber
        ENV['KNAPSACK_PRO_RECORDING_ENABLED'] = 'true'

        runner = new(KnapsackPro::Adapters::CucumberAdapter)

        if runner.test_files_to_execute_exist?
          require 'cucumber/rake/task'

          task_name = 'knapsack_pro:cucumber_run'
          if Rake::Task.task_defined?(task_name)
            Rake::Task[task_name].clear
          end

          ::Cucumber::Rake::Task.new(task_name) do |t|
            t.cucumber_opts = "#{args} --require #{runner.test_dir} -- #{runner.stringify_test_file_paths}"
          end
          Rake::Task[task_name].invoke
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
knapsack_pro-2.10.1 lib/knapsack_pro/runners/cucumber_runner.rb
knapsack_pro-2.10.0 lib/knapsack_pro/runners/cucumber_runner.rb
knapsack_pro-2.9.0 lib/knapsack_pro/runners/cucumber_runner.rb
knapsack_pro-2.8.0 lib/knapsack_pro/runners/cucumber_runner.rb
knapsack_pro-2.7.0 lib/knapsack_pro/runners/cucumber_runner.rb
knapsack_pro-2.6.0 lib/knapsack_pro/runners/cucumber_runner.rb
knapsack_pro-2.5.0 lib/knapsack_pro/runners/cucumber_runner.rb
knapsack_pro-2.4.0 lib/knapsack_pro/runners/cucumber_runner.rb
knapsack_pro-2.3.0 lib/knapsack_pro/runners/cucumber_runner.rb
knapsack_pro-2.2.1 lib/knapsack_pro/runners/cucumber_runner.rb
knapsack_pro-2.2.0 lib/knapsack_pro/runners/cucumber_runner.rb
knapsack_pro-2.1.1 lib/knapsack_pro/runners/cucumber_runner.rb