Commit f5564a22e4cb7532fb3db8643223a0c203634284

Authored by Antonio Terceiro
1 parent ab5acdb4

Using CUCUMBER_FORMAT in selenium task as well

This way the output of our green CI builds gets better.
Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
lib/tasks/test.rake
1 task :default => [:test, :cucumber, :selenium] 1 task :default => [:test, :cucumber, :selenium]
2 2
  3 +desc 'Runs Seleniun acceptance tests'
3 task :selenium do 4 task :selenium do
4 - sh 'xvfb-run cucumber -p selenium' 5 + sh "xvfb-run cucumber -p selenium --format #{ENV['CUCUMBER_FORMAT'] || 'pretty'}"
5 end 6 end