# -*- encoding: utf-8 -*- require "aruba/cucumber" require "busser/cucumber" if ENV["COVERAGE"] require "simplecov" SimpleCov.command_name "features" end Before do @aruba_timeout_seconds = 45 end After do |s| # Tell Cucumber to quit after this scenario is done - if it failed. # This is useful to inspect the 'tmp/aruba' directory before any other # steps are executed and clear it out. Cucumber.wants_to_quit = true if s.failed? end