11 lines
198 B
Ruby
11 lines
198 B
Ruby
Flowerbox.configure do |c|
|
|
c.test_with :jasmine
|
|
c.run_with :node
|
|
|
|
c.spec_patterns << "*_spec.*"
|
|
c.spec_patterns << "**/*_spec.*"
|
|
|
|
c.test_environment.reporters << "SimpleNodeReporter"
|
|
end
|
|
|