blob: aefa38154c3179f6ab13277eb722c45dae0a80c1 [file] [log] [blame]
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