Sha256: 640d20f97d38d41e13d01d7b89f4d99f7124d79615abef01dac4cd21c1e659c3
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
require 'phantomjs' module Jasmine module Runners class PhantomJs def initialize(formatter, jasmine_server_url, result_batch_size, prevent_phantom_js_auto_install) @formatter = formatter @jasmine_server_url = jasmine_server_url @result_batch_size = result_batch_size @prevent_phantom_js_auto_install = prevent_phantom_js_auto_install end def run command = "#{phantom_js_path} '#{File.join(File.dirname(__FILE__), 'phantom_jasmine_run.js')}' #{jasmine_server_url} #{result_batch_size}" IO.popen(command) do |output| output.each do |line| if line =~ /^jasmine_result/ line = line.sub(/^jasmine_result/, '') raw_results = JSON.parse(line, :max_nesting => false) results = raw_results.map { |r| Result.new(r) } formatter.format(results) end end end formatter.done end def phantom_js_path prevent_phantom_js_auto_install ? 'phantomjs' : Phantomjs.path end def boot_js File.expand_path('phantom_boot.js', File.dirname(__FILE__)) end private attr_reader :formatter, :jasmine_server_url, :result_batch_size, :prevent_phantom_js_auto_install end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jasmine-2.0.2 | lib/jasmine/runners/phantom_js.rb |