mirror of
https://github.com/toji/gl-matrix.git
synced 2026-01-18 14:26:54 +00:00
10 lines
224 B
Ruby
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
|