11 lines
206 B
Ruby
11 lines
206 B
Ruby
|
Flowerbox.configure do |c|
|
||
|
c.test_with :jasmine
|
||
|
c.run_with :selenium
|
||
|
|
||
|
c.spec_patterns << "*_spec.*"
|
||
|
c.spec_patterns << "**/*_spec.*"
|
||
|
|
||
|
c.test_environment.reporters << "SimpleSeleniumReporter"
|
||
|
end
|
||
|
|