testdouble / jasmine-rails

A Jasmine runner for rails projects that's got you covered in both the terminal and the browser
http://rubygems.org/gems/jasmine-rails
MIT License
378 stars 154 forks source link

`rake spec:javascript` shouldn't short circuit a chain of rake commands #199

Closed jason-o-matic closed 7 years ago

jason-o-matic commented 7 years ago

I have my default rake command set to a chain of commands:

["db:test:prepare", :spec, "spec:javascript", :cucumber, :outdated, :audit]

Because https://github.com/searls/jasmine-rails/blob/master/lib/tasks/jasmine-rails_tasks.rake#L11 uses exec instead of system if means the initial rake process dies.

I should have a PR that switches this to system in a few minutes.