1009 B
1009 B
Guard support for jasmine-headless-webkit
Add running your Jasmine specs to your Guardfile
via jasmine-headless-webkit
. Nice!
guard 'jasmine-headless-webkit' do
watch(%r{^app/assets/javascripts/(.*)\..*}) { |m| newest_js_file("spec/javascripts/#{m[1]}") }
end
guard
options
:all_on_start => false
to not run everything, just likeguard-rspec
What's the deal with newest_js_file
?
Since one could, theoretically, have a CoffeeScript app file and a JavaScript spec file (or vice versa), the search for the correct matching
file is a little more complicated. newest_js_file
extends the Guard DSL to search the given path for the newest .js
or .coffee
file:
newest_js_file('spec/javascripts/models/my_model')
#=> search for Dir['spec/javascripts/models/my_model*.{js,coffee}'] and return the newest file found
If you 100% know you won't need that support, modify your Guardfile
as appropriate.