Use Guard with jasmine-headless-webkit
Go to file
John Bintz 8758edcd09 ensure exact extension matches on some regexps 2011-06-06 10:01:46 -04:00
lib/guard ensure exact extension matches on some regexps 2011-06-06 10:01:46 -04:00
spec smarter filtering of files by extension 2011-06-03 16:45:19 -04:00
.gitignore initial commit 2011-05-23 18:37:19 -04:00
.travis.yml more changes and testing stuff 2011-06-06 09:49:37 -04:00
Gemfile more changes and testing stuff 2011-06-06 09:49:37 -04:00
Guardfile yeah, it's working 2011-05-23 21:28:01 -04:00
README.md readme 2011-06-06 09:51:58 -04:00
Rakefile more changes and testing stuff 2011-06-06 09:49:37 -04:00
guard-jasmine-headless-webkit.gemspec make the runner work with the new report function of jasmine-headless-webkit 2011-05-29 13:11:11 -04:00

README.md

Build Status

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]}_spec") }
end

gem install guard-jasmine-headless-webkit and then guard init jasmine-headless-webkit in your project directory to get started. You should also put it in your Gemfile because, hey, why not, right?

Output is colored by default. If you want it not colored, place a --no-colors option into the project's or your home folder's .jasmine-headless-webkit file.

guard options

  • :all_on_start => false to not run everything when starting, just like guard-rspec.
  • :run_before => "<command to run> to run a command before running specs. If the command fails, the test run stops.
  • :jammit => true to run jammit -f 2>/dev/null before the tests for the current file change are run.
  • :valid_extensions => %w{ to run jammit -f 2>/dev/null before the tests for the current file change are run.

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.

I use Backbone.js a lot, and I put my Underscore view templates in app/views/*.jst and mash them all together with Jammit for use in my apps. Feel free to change that, it's your Guardfile after all. Or, try it. It's easy to do in your assets.yml file:

templates:
- app/views/*.jst