Sha256: 5aa6480a898d10b6ae64ad05eb7b6f47feb1e8123a8907cab6a9d84bef65b682

Contents?: true

Size: 1.02 KB

Versions: 13

Compression:

Stored size: 1.02 KB

Contents

namespace :jasmine do
  task :require_phantom do
    sh "which phantomjs" do |ok, res|
      fail 'Cannot find phantomjs on $PATH' unless ok
    end
  end

  task :require_casper do
    sh "which casperjs" do |ok, res|
      fail 'Cannot find casperjs on $PATH' unless ok
    end
  end

  desc "Run continuous integration tests headlessly with phantom.js"
  task :headless => ['jasmine:require', 'jasmine:require_phantom', 'jasmine:require_casper'] do
    support_dir = File.expand_path('../../spec/javascripts/support', File.dirname(__FILE__))
    config_overrides = File.join(support_dir, 'jasmine_config.rb')
    require config_overrides if File.exists?(config_overrides)
    
    test_runner = File.join(support_dir, 'runner.js')
    config = Jasmine::Config.new
    config.start_jasmine_server

    jasmine_url = "#{config.jasmine_host}:#{config.jasmine_server_port}"
    puts "Running tests against #{jasmine_url}"
    sh "casperjs #{test_runner} #{jasmine_url}" do |ok, res|
      fail "jasmine suite failed" unless ok
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
judge-3.1.0 lib/tasks/js.rake
judge-3.0.0 lib/tasks/js.rake
judge-2.1.1 lib/tasks/js.rake
judge-2.1.0 lib/tasks/js.rake
judge-2.0.6 lib/tasks/js.rake
judge-2.0.5 lib/tasks/js.rake
judge-2.0.4 lib/tasks/js.rake
judge-2.0.3 lib/tasks/js.rake
judge-2.0.2 lib/tasks/js.rake
judge-2.0.1 lib/tasks/js.rake
judge-2.0.0 lib/tasks/js.rake
judge-1.5.0 lib/tasks/js.rake
judge-1.4.0 lib/tasks/js.rake