gl-matrix/tasks/test/jasmine.rake
2012-11-03 20:06:10 -04:00

10 lines
224 B
Ruby

namespace :test do
desc "Run specs via server"
task :jasmine do
port = ENV['JASMINE_PORT'] || 8888
puts "your tests are here:"
puts " http://localhost:#{port}/"
Jasmine::Server.new(port).start
end
end