metaskills / guard-konacha

Automatically run konacha tests through Guard

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Guard::Konacha

Automatically run your Konacha tests through Guard.

Install

Install the gem:

$ gem install guard-konacha

Or add to your Gemfile:

gem 'guard-konacha'

Usage

Add guard definitions to your Guardfile

guard :konacha do
  watch(%r{^spec/javascripts/.+_spec(\.js|\.js\.coffee)})
end

Configure

If your specs live outside of spec/javascripts then tell Konacha where to find them.

guard :konacha, :spec_dir => 'spec/front-end' do
  # ...
end

Development

This is a work in progress and could use some help.

Contributors

https://github.com/guard/guard/contributors

About

Automatically run konacha tests through Guard

License:MIT License


Languages

Language:Ruby 100.0%