Rakefile in simple_pvr-0.0.1 vs Rakefile in simple_pvr-0.0.2
- old
+ new
@@ -6,11 +6,14 @@
directory 'output'
namespace :test do
RSpec::Core::RakeTask.new(:spec)
Cucumber::Rake::Task.new(:features)
+ task :javascript do
+ sh 'testacular start test/testacular.conf.js --singleRun'
+ end
end
desc 'Run specs and features'
-task :test => ['test:spec', 'test:features']
+task :test => ['test:spec', 'test:features', 'test:javascript']
task :default => ['test']
\ No newline at end of file