2009-09-05 06:04:48 +00:00
|
|
|
require File.expand_path(File.join(File.dirname(__FILE__), "spec/jasmine_helper.rb"))
|
|
|
|
|
2009-08-27 05:13:30 +00:00
|
|
|
namespace :test do
|
|
|
|
desc "Run continuous integration tests"
|
|
|
|
require "spec"
|
|
|
|
require 'spec/rake/spectask'
|
|
|
|
|
|
|
|
Spec::Rake::SpecTask.new(:ci) do |t|
|
|
|
|
t.spec_opts = ["--color", "--format", "specdoc"]
|
|
|
|
t.spec_files = ["spec/jasmine_spec.rb"]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
desc "Run specs via server"
|
|
|
|
task :jasmine_server do
|
2009-09-05 06:04:48 +00:00
|
|
|
require File.expand_path(File.join(JasmineHelper.jasmine_root, "contrib/ruby/jasmine_spec_builder"))
|
2009-08-27 05:13:30 +00:00
|
|
|
|
|
|
|
puts "your tests are here:"
|
|
|
|
puts " http://localhost:8888/run.html"
|
|
|
|
|
2009-09-05 06:04:48 +00:00
|
|
|
Jasmine::SimpleServer.start(8888,
|
2009-09-10 01:18:00 +00:00
|
|
|
lambda { JasmineHelper.spec_file_urls },
|
2009-09-05 06:04:48 +00:00
|
|
|
JasmineHelper.dir_mappings)
|
2009-08-27 05:13:30 +00:00
|
|
|
end
|