[rspec-users] [Webrat][RSpec] Features opening browser windows
Bart Zonneveld
zuperinfinite at gmail.com
Tue Mar 17 08:44:51 EDT 2009
On 17-mrt-2009, at 11:07, Andrew Premdas wrote:
> Apologies for previous message without proper subject
>
> Since upgrading rspec to 1.2 I am seeing behavior that a web
> browser is being opened when there is a problem in a page that a
> feature visits.
>
> Is this behavior intentional and if so can I turn it off. Having
> thirty browser windows open up when I introduce an error that
> breaks alot of features is a real pain in the backside.
It's a config option in Webrat. Somehow it's default set to true,
used to be false.
Put
Webrat.configure do |config|
config.mode = :rails
config.open_error_files = false
end
in cucumbers env.rb
cheers,
bartz
More information about the rspec-users
mailing list