features/step_definitions/test_steps.rb in katapult-0.2.0 vs features/step_definitions/test_steps.rb in katapult-0.3.0
- old
+ new
@@ -1,11 +1,11 @@
When /^I run rspec/ do
- run_simple 'rspec'
+ run_simple 'rspec', exit_timeout: 10
end
When /^I run cucumber/ do
- # The test application's Bundler sees an empty BUNDLE_GEMFILE variable and
- # infers the wrong Gemfile location. Fixed by removing the var altogether.
- delete_environment_variable 'BUNDLE_GEMFILE'
+ run_simple 'bundle exec cucumber', exit_timeout: 15
+end
- run_simple 'bundle exec cucumber'
+When 'debugger' do
+ binding.pry
end