Moved default rake task to default.rake. Now runs cucumber, rspec, and jasmine.
This commit is contained in:
parent
3bd3a63c5d
commit
08a70e4980
2 changed files with 1 additions and 2 deletions
|
|
@ -40,8 +40,6 @@ begin
|
|||
|
||||
Rake.application.instance_variable_get('@tasks').delete('default')
|
||||
|
||||
task :default => [:cucumber, :spec]
|
||||
|
||||
task :features => :cucumber do
|
||||
STDERR.puts "*** The 'features' task is deprecated. See rake -T cucumber ***"
|
||||
end
|
||||
|
|
|
|||
1
lib/tasks/default.rake
Normal file
1
lib/tasks/default.rake
Normal file
|
|
@ -0,0 +1 @@
|
|||
task :default => [:cucumber, :spec, :'jasmine:ci']
|
||||
Loading…
Reference in a new issue