Merge branch 'master' of git@github.com:pivotal/jasmine
Conflicts: Rakefile examples/ruby/Rakefile examples/ruby/spec/jasmine_spec.rb lib/jasmine-0.9.0.js src/Queue.js
This commit is contained in:
commit
724f1772b7
69
Rakefile
69
Rakefile
|
@ -1,6 +1,37 @@
|
||||||
desc 'Builds lib/jasmine from source'
|
require File.expand_path(File.join(File.dirname(__FILE__), "spec/jasmine_helper.rb"))
|
||||||
namespace :build do
|
|
||||||
task :jasmine => 'build:doc' do
|
def jasmine_sources
|
||||||
|
sources = ["src/base.js", "src/util.js", "src/Env.js", "src/Reporter.js", "src/Block.js"]
|
||||||
|
sources += Dir.glob('src/*.js').reject{|f| f == 'src/base.js' || sources.include?(f)}.sort
|
||||||
|
end
|
||||||
|
|
||||||
|
def jasmine_filename(version)
|
||||||
|
"jasmine-#{version['major']}.#{version['minor']}.#{version['build']}.js"
|
||||||
|
end
|
||||||
|
|
||||||
|
def version_hash
|
||||||
|
JSON.parse(File.new("src/version.json").read);
|
||||||
|
end
|
||||||
|
|
||||||
|
def start_jasmine_server(jasmine_includes)
|
||||||
|
require File.expand_path(File.join(JasmineHelper.jasmine_root, "contrib/ruby/jasmine_spec_builder"))
|
||||||
|
|
||||||
|
includes = jasmine_includes +
|
||||||
|
['/lib/json2.js',
|
||||||
|
'/lib/TrivialReporter.js']
|
||||||
|
|
||||||
|
puts "your tests are here:"
|
||||||
|
puts " http://localhost:8888/run.html"
|
||||||
|
|
||||||
|
Jasmine::SimpleServer.start(8888,
|
||||||
|
lambda { includes + JasmineHelper.spec_file_urls },
|
||||||
|
JasmineHelper.dir_mappings)
|
||||||
|
end
|
||||||
|
|
||||||
|
namespace :jasmine do
|
||||||
|
desc 'Builds lib/jasmine from source'
|
||||||
|
task :build => 'jasmine:doc' do
|
||||||
|
puts 'Building Jasmine from source'
|
||||||
require 'json'
|
require 'json'
|
||||||
sources = jasmine_sources
|
sources = jasmine_sources
|
||||||
version = version_hash
|
version = version_hash
|
||||||
|
@ -21,10 +52,12 @@ jasmine.version_= {
|
||||||
sources.each do |source_filename|
|
sources.each do |source_filename|
|
||||||
jasmine.puts(File.read(source_filename))
|
jasmine.puts(File.read(source_filename))
|
||||||
end
|
end
|
||||||
|
jasmine.close
|
||||||
end
|
end
|
||||||
|
|
||||||
desc "Build jasmine documentation"
|
desc "Build jasmine documentation"
|
||||||
task :doc do
|
task :doc do
|
||||||
|
puts 'Creating Jasmine Documentation'
|
||||||
require 'rubygems'
|
require 'rubygems'
|
||||||
#sudo gem install ragaskar-jsdoc_helper
|
#sudo gem install ragaskar-jsdoc_helper
|
||||||
require 'jsdoc_helper'
|
require 'jsdoc_helper'
|
||||||
|
@ -34,25 +67,23 @@ jasmine.version_= {
|
||||||
Rake::Task[:lambda_jsdoc].invoke
|
Rake::Task[:lambda_jsdoc].invoke
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
def jasmine_sources
|
desc "Run jasmine tests of source via server"
|
||||||
sources = ["src/base.js", "src/util.js", "src/Env.js", "src/Reporter.js", "src/Block.js"]
|
task :server do
|
||||||
|
jasmine_includes = jasmine_sources
|
||||||
|
start_jasmine_server(jasmine_includes)
|
||||||
|
end
|
||||||
|
|
||||||
sources += Dir.glob('src/*.js').reject{|f| f == 'src/base.js' || sources.include?(f)}.sort
|
desc "Build jasmine and run tests via server"
|
||||||
end
|
task :server_build => 'jasmine:build' do
|
||||||
|
|
||||||
def jasmine_filename(version)
|
jasmine_includes = ['/lib/' + File.basename(Dir.glob("#{JasmineHelper.jasmine_lib_dir}/jasmine*.js").first)]
|
||||||
"jasmine-#{version['major']}.#{version['minor']}.#{version['build']}.js"
|
start_jasmine_server(jasmine_includes)
|
||||||
end
|
end
|
||||||
|
|
||||||
def version_hash
|
namespace :test do
|
||||||
JSON.parse(File.new("src/version.json").read);
|
|
||||||
end
|
|
||||||
|
|
||||||
namespace :test do
|
|
||||||
desc "Run continuous integration tests"
|
desc "Run continuous integration tests"
|
||||||
task :ci => 'build:jasmine' do
|
task :ci => 'jasmine:build' do
|
||||||
require "spec"
|
require "spec"
|
||||||
require 'spec/rake/spectask'
|
require 'spec/rake/spectask'
|
||||||
Spec::Rake::SpecTask.new(:lambda_ci) do |t|
|
Spec::Rake::SpecTask.new(:lambda_ci) do |t|
|
||||||
|
@ -62,6 +93,8 @@ namespace :test do
|
||||||
Rake::Task[:lambda_ci].invoke
|
Rake::Task[:lambda_ci].invoke
|
||||||
end
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
desc "Run jasmine tests via server"
|
desc "Run jasmine tests via server"
|
||||||
|
@ -78,7 +111,7 @@ task :jasmine_server do
|
||||||
}
|
}
|
||||||
|
|
||||||
puts "your tests are here:"
|
puts "your tests are here:"
|
||||||
puts " http://localhost:8888/"
|
puts " http://localhost:8888/run.html"
|
||||||
|
|
||||||
Jasmine::SimpleServer.start(8888, includes + spec_files, dir_mappings)
|
Jasmine::SimpleServer.start(8888, includes + spec_files, dir_mappings)
|
||||||
end
|
end
|
|
@ -134,7 +134,7 @@ module Jasmine
|
||||||
|
|
||||||
class SimpleClient
|
class SimpleClient
|
||||||
def initialize(selenium_host, selenium_port, selenium_browser_start_command, http_address)
|
def initialize(selenium_host, selenium_port, selenium_browser_start_command, http_address)
|
||||||
require 'selenium'
|
require 'selenium/client'
|
||||||
@driver = Selenium::Client::Driver.new(
|
@driver = Selenium::Client::Driver.new(
|
||||||
selenium_host,
|
selenium_host,
|
||||||
selenium_port,
|
selenium_port,
|
||||||
|
|
|
@ -258,7 +258,7 @@ ul.inheritsList
|
||||||
</div>
|
</div>
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blankt">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blankt">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:58 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -300,7 +300,7 @@ ul.inheritsList
|
||||||
</div>
|
</div>
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blankt">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blankt">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:58 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -908,7 +908,7 @@ A convenience method that allows existing specs to be disabled temporarily durin
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:57 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -339,7 +339,7 @@ ul.inheritsList
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:57 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -384,7 +384,7 @@ ul.inheritsList
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:57 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -316,7 +316,7 @@ ul.inheritsList
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:57 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -316,7 +316,7 @@ ul.inheritsList
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:57 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -700,7 +700,7 @@ ul.inheritsList
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:57 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -316,7 +316,7 @@ ul.inheritsList
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:57 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -267,6 +267,33 @@ ul.inheritsList
|
||||||
|
|
||||||
<!-- ============================== methods summary ======================== -->
|
<!-- ============================== methods summary ======================== -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<table class="summaryTable" cellspacing="0" summary="A summary of the methods documented in the class jasmine.Runner.">
|
||||||
|
<caption>Method Summary</caption>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">Method Attributes</th>
|
||||||
|
<th scope="col">Method Name and Description</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td class="attributes"> </td>
|
||||||
|
<td class="nameDescription">
|
||||||
|
<div class="fixedFont"><b><a href="../symbols/jasmine.Runner.html#getAllSuites">getAllSuites</a></b>()
|
||||||
|
</div>
|
||||||
|
<div class="description"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ============================== events summary ======================== -->
|
<!-- ============================== events summary ======================== -->
|
||||||
|
|
||||||
|
|
||||||
|
@ -316,6 +343,36 @@ ul.inheritsList
|
||||||
|
|
||||||
<!-- ============================== method details ========================= -->
|
<!-- ============================== method details ========================= -->
|
||||||
|
|
||||||
|
<div class="sectionTitle">
|
||||||
|
Method Detail
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="getAllSuites"> </a>
|
||||||
|
<div class="fixedFont">
|
||||||
|
|
||||||
|
|
||||||
|
<b>getAllSuites</b>()
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="description">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ============================== event details ========================= -->
|
<!-- ============================== event details ========================= -->
|
||||||
|
|
||||||
|
@ -327,7 +384,7 @@ ul.inheritsList
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:57 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -339,7 +339,7 @@ ul.inheritsList
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:57 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -845,7 +845,7 @@ expect(foo.bar.callCount).toEqual(0);</pre>
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:58 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -267,6 +267,33 @@ ul.inheritsList
|
||||||
|
|
||||||
<!-- ============================== methods summary ======================== -->
|
<!-- ============================== methods summary ======================== -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<table class="summaryTable" cellspacing="0" summary="A summary of the methods documented in the class jasmine.Suite.">
|
||||||
|
<caption>Method Summary</caption>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">Method Attributes</th>
|
||||||
|
<th scope="col">Method Name and Description</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td class="attributes"> </td>
|
||||||
|
<td class="nameDescription">
|
||||||
|
<div class="fixedFont"><b><a href="../symbols/jasmine.Suite.html#specCount">specCount</a></b>()
|
||||||
|
</div>
|
||||||
|
<div class="description"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ============================== events summary ======================== -->
|
<!-- ============================== events summary ======================== -->
|
||||||
|
|
||||||
|
|
||||||
|
@ -334,6 +361,36 @@ ul.inheritsList
|
||||||
|
|
||||||
<!-- ============================== method details ========================= -->
|
<!-- ============================== method details ========================= -->
|
||||||
|
|
||||||
|
<div class="sectionTitle">
|
||||||
|
Method Detail
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="specCount"> </a>
|
||||||
|
<div class="fixedFont">
|
||||||
|
|
||||||
|
|
||||||
|
<b>specCount</b>()
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="description">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ============================== event details ========================= -->
|
<!-- ============================== event details ========================= -->
|
||||||
|
|
||||||
|
@ -345,7 +402,7 @@ ul.inheritsList
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:58 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -678,7 +678,7 @@ Jasmine environment.
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:57 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -316,7 +316,7 @@ ul.inheritsList
|
||||||
<!-- ============================== footer ================================= -->
|
<!-- ============================== footer ================================= -->
|
||||||
<div class="fineprint" style="clear:both">
|
<div class="fineprint" style="clear:both">
|
||||||
|
|
||||||
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Wed Sep 02 2009 07:41:14 GMT-0700 (PDT)
|
Documentation generated by <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a> 2.1.0 on Fri Sep 04 2009 23:03:58 GMT-0700 (PDT)
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,3 +1,5 @@
|
||||||
|
require File.expand_path(File.join(File.dirname(__FILE__), "spec/jasmine_helper.rb"))
|
||||||
|
|
||||||
namespace :test do
|
namespace :test do
|
||||||
desc "Run continuous integration tests"
|
desc "Run continuous integration tests"
|
||||||
require "spec"
|
require "spec"
|
||||||
|
@ -11,16 +13,12 @@ end
|
||||||
|
|
||||||
desc "Run specs via server"
|
desc "Run specs via server"
|
||||||
task :jasmine_server do
|
task :jasmine_server do
|
||||||
require File.expand_path(File.join(File.dirname(__FILE__), "../../contrib/ruby/jasmine_spec_builder"))
|
require File.expand_path(File.join(JasmineHelper.jasmine_root, "contrib/ruby/jasmine_spec_builder"))
|
||||||
|
|
||||||
dir_mappings = {
|
|
||||||
"/spec" => 'spec'
|
|
||||||
}
|
|
||||||
|
|
||||||
spec_files = Dir.glob("spec/**/*[Ss]pec.js")
|
|
||||||
|
|
||||||
puts "your tests are here:"
|
puts "your tests are here:"
|
||||||
puts " http://localhost:8888/"
|
puts " http://localhost:8888/run.html"
|
||||||
|
|
||||||
Jasmine::SimpleServer.start(8888, spec_files, dir_mappings)
|
Jasmine::SimpleServer.start(8888,
|
||||||
|
lambda { JasmineHelper.jasmine + JasmineHelper.spec_file_urls },
|
||||||
|
JasmineHelper.dir_mappings)
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
class JasmineHelper
|
||||||
|
def self.jasmine_lib_dir
|
||||||
|
File.expand_path(File.join(jasmine_root, 'lib'))
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.jasmine_root
|
||||||
|
File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..'))
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.jasmine
|
||||||
|
['/lib/' + File.basename(Dir.glob("#{JasmineHelper.jasmine_lib_dir}/jasmine*.js").first)] +
|
||||||
|
['/lib/json2.js',
|
||||||
|
'/lib/TrivialReporter.js']
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.jasmine_src_dir
|
||||||
|
File.expand_path(File.join(jasmine_root, 'src'))
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.jasmine_spec_dir
|
||||||
|
File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec'))
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.raw_spec_files
|
||||||
|
Dir.glob(File.join(jasmine_spec_dir, "**/*[Ss]pec.js"))
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.spec_file_urls
|
||||||
|
raw_spec_files.collect {|f| f.sub(jasmine_spec_dir, "/spec")}
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.dir_mappings
|
||||||
|
{
|
||||||
|
"/src" => jasmine_src_dir,
|
||||||
|
"/spec" => jasmine_spec_dir,
|
||||||
|
"/lib" => jasmine_lib_dir
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
|
@ -1,14 +1,13 @@
|
||||||
require 'rubygems'
|
require 'rubygems'
|
||||||
require File.expand_path(File.join(File.dirname(__FILE__), "../../../contrib/ruby/jasmine_spec_builder"))
|
|
||||||
require "selenium_rc"
|
require "selenium_rc"
|
||||||
|
require File.expand_path(File.join(File.dirname(__FILE__), "jasmine_helper.rb"))
|
||||||
|
require File.expand_path(File.join(JasmineHelper.jasmine_root, "contrib/ruby/jasmine_spec_builder"))
|
||||||
|
|
||||||
dir_mappings = {
|
jasmine_runner = Jasmine::Runner.new(SeleniumRC::Server.new.jar_path,
|
||||||
"/spec" => 'spec',
|
JasmineHelper.jasmine + JasmineHelper.spec_file_urls,
|
||||||
}
|
JasmineHelper.dir_mappings)
|
||||||
|
|
||||||
spec_files = Dir.glob("spec/**/*[Ss]pec.js")
|
spec_builder = Jasmine::SpecBuilder.new(JasmineHelper.raw_spec_files, jasmine_runner)
|
||||||
jasmine_runner = Jasmine::Runner.new(SeleniumRC::Server.new.jar_path, spec_files, dir_mappings)
|
|
||||||
spec_builder = Jasmine::SpecBuilder.new(spec_files, jasmine_runner)
|
|
||||||
|
|
||||||
should_stop = false
|
should_stop = false
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
namespace :spec do
|
||||||
|
desc "Run continuous integration tests"
|
||||||
|
require "spec"
|
||||||
|
require 'spec/rake/spectask'
|
||||||
|
|
||||||
|
Spec::Rake::SpecTask.new(:javascript) do |t|
|
||||||
|
t.spec_opts = ["--color", "--format", "specdoc"]
|
||||||
|
t.spec_files = ["spec/javascript/jasmine_spec.rb"]
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
desc "Run specs via server"
|
||||||
|
task :jasmine_server do
|
||||||
|
require File.expand_path(File.join(RAILS_ROOT, "spec/javascript/jasmine_helper.rb"))
|
||||||
|
require File.expand_path(File.join(RAILS_ROOT, "spec/javascript/jasmine/contrib/ruby/jasmine_runner.rb"))
|
||||||
|
|
||||||
|
|
||||||
|
includes = ['lib/' + File.basename(Dir.glob("#{JasmineHelper.jasmine_lib_dir}/jasmine*.js").first),
|
||||||
|
'lib/json2.js',
|
||||||
|
'lib/TrivialReporter.js']
|
||||||
|
|
||||||
|
|
||||||
|
puts "your tests are here:"
|
||||||
|
puts " http://localhost:8888/run.html"
|
||||||
|
|
||||||
|
Jasmine::SimpleServer.start(8888,
|
||||||
|
lambda { includes + JasmineHelper.spec_file_urls },
|
||||||
|
JasmineHelper.dir_mappings)
|
||||||
|
end
|
||||||
|
end
|
|
@ -517,7 +517,7 @@ jasmine.version_= {
|
||||||
"major": 0,
|
"major": 0,
|
||||||
"minor": 9,
|
"minor": 9,
|
||||||
"build": 0,
|
"build": 0,
|
||||||
"revision": 1251902474
|
"revision": 1252130638
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* @namespace
|
* @namespace
|
||||||
|
@ -591,6 +591,8 @@ jasmine.Env = function() {
|
||||||
|
|
||||||
this.reporter = new jasmine.MultiReporter();
|
this.reporter = new jasmine.MultiReporter();
|
||||||
|
|
||||||
|
this.updateInterval = 0;
|
||||||
|
|
||||||
this.updateInterval = 0;
|
this.updateInterval = 0;
|
||||||
this.lastUpdate = 0;
|
this.lastUpdate = 0;
|
||||||
this.specFilter = function() {
|
this.specFilter = function() {
|
||||||
|
@ -1445,7 +1447,6 @@ jasmine.Queue.prototype._next = function () {
|
||||||
self.finish();
|
self.finish();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var now = new Date().getTime();
|
var now = new Date().getTime();
|
||||||
if (this.env.updateInterval && now - this.env.lastUpdate > this.env.updateInterval) {
|
if (this.env.updateInterval && now - this.env.lastUpdate > this.env.updateInterval) {
|
||||||
this.env.lastUpdate = now;
|
this.env.lastUpdate = now;
|
||||||
|
@ -1453,6 +1454,7 @@ jasmine.Queue.prototype._next = function () {
|
||||||
} else {
|
} else {
|
||||||
doNext();
|
doNext();
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
jasmine.Queue.prototype.finish = function () {
|
jasmine.Queue.prototype.finish = function () {
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
class JasmineHelper
|
||||||
|
def self.jasmine_lib_dir
|
||||||
|
File.expand_path(File.join(jasmine_root, 'lib'))
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.jasmine
|
||||||
|
['/lib/' + File.basename(Dir.glob("#{JasmineHelper.jasmine_lib_dir}/jasmine*.js").first)] +
|
||||||
|
['/lib/json2.js',
|
||||||
|
'/lib/TrivialReporter.js']
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.jasmine_root
|
||||||
|
File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def self.jasmine_src_dir
|
||||||
|
File.expand_path(File.join(jasmine_root, 'src'))
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.jasmine_spec_dir
|
||||||
|
File.expand_path(File.join(jasmine_root, 'spec'))
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.raw_spec_files
|
||||||
|
Dir.glob(File.join(jasmine_spec_dir, "**/*[Ss]pec.js"))
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.spec_file_urls
|
||||||
|
raw_spec_files.collect {|f| f.sub(jasmine_spec_dir, "/spec")}
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.dir_mappings
|
||||||
|
{
|
||||||
|
"/src" => jasmine_src_dir,
|
||||||
|
"/spec" => jasmine_spec_dir,
|
||||||
|
"/lib" => jasmine_lib_dir
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
|
@ -1,23 +1,13 @@
|
||||||
require 'rubygems'
|
require 'rubygems'
|
||||||
require File.expand_path(File.join(File.dirname(__FILE__), "../contrib/ruby/jasmine_spec_builder"))
|
|
||||||
require "selenium_rc"
|
require "selenium_rc"
|
||||||
|
require File.expand_path(File.join(File.dirname(__FILE__), "jasmine_helper.rb"))
|
||||||
|
require File.expand_path(File.join(JasmineHelper.jasmine_root, "contrib/ruby/jasmine_spec_builder"))
|
||||||
|
|
||||||
dir_mappings = {
|
jasmine_runner = Jasmine::Runner.new(SeleniumRC::Server.new.jar_path,
|
||||||
"/spec" => 'spec',
|
JasmineHelper.jasmine + JasmineHelper.spec_file_urls,
|
||||||
"/lib" => 'lib',
|
JasmineHelper.dir_mappings)
|
||||||
"/src" => 'src'
|
|
||||||
}
|
|
||||||
|
|
||||||
def jasmine_sources
|
spec_builder = Jasmine::SpecBuilder.new(JasmineHelper.raw_spec_files, jasmine_runner)
|
||||||
sources = ["src/base.js", "src/util.js", "src/Env.js", "src/Reporter.js", "src/Block.js"]
|
|
||||||
|
|
||||||
sources += Dir.glob('src/*.js').reject{|f| f == 'src/base.js' || sources.include?(f)}.sort
|
|
||||||
end
|
|
||||||
|
|
||||||
includes = jasmine_sources + ['lib/json2.js', 'lib/TrivialReporter.js']
|
|
||||||
spec_files = Dir.glob("spec/**/*[Ss]pec.js")
|
|
||||||
jasmine_runner = Jasmine::Runner.new(SeleniumRC::Server.new.jar_path, includes + spec_files, dir_mappings)
|
|
||||||
spec_builder = Jasmine::SpecBuilder.new(spec_files, jasmine_runner)
|
|
||||||
|
|
||||||
should_stop = false
|
should_stop = false
|
||||||
|
|
||||||
|
|
|
@ -1,16 +1,10 @@
|
||||||
describe('jasmine.Reporter', function() {
|
describe('jasmine.Reporter', function() {
|
||||||
var env;
|
var env;
|
||||||
|
|
||||||
var fakeTimer;
|
|
||||||
|
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
env = new jasmine.Env();
|
env = new jasmine.Env();
|
||||||
|
|
||||||
fakeTimer = new jasmine.FakeTimer();
|
|
||||||
env.setTimeout = fakeTimer.setTimeout;
|
|
||||||
env.clearTimeout = fakeTimer.clearTimeout;
|
|
||||||
env.setInterval = fakeTimer.setInterval;
|
|
||||||
env.clearInterval = fakeTimer.clearInterval;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should get called from the test runner', function() {
|
it('should get called from the test runner', function() {
|
||||||
|
@ -57,7 +51,6 @@ describe('jasmine.Reporter', function() {
|
||||||
|
|
||||||
var runner = env.currentRunner;
|
var runner = env.currentRunner;
|
||||||
runner.execute();
|
runner.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(foo).toEqual(3); // 'foo was expected to be 3, was ' + foo);
|
expect(foo).toEqual(3); // 'foo was expected to be 3, was ' + foo);
|
||||||
expect(bar).toEqual(2); // 'bar was expected to be 2, was ' + bar);
|
expect(bar).toEqual(2); // 'bar was expected to be 2, was ' + bar);
|
||||||
|
|
|
@ -30,7 +30,6 @@ describe('RunnerTest', function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
env.currentRunner.execute();
|
env.currentRunner.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
var runnerResults = env.currentRunner.getResults();
|
var runnerResults = env.currentRunner.getResults();
|
||||||
expect(runnerResults.totalCount).toEqual(2);
|
expect(runnerResults.totalCount).toEqual(2);
|
||||||
|
@ -57,7 +56,6 @@ describe('RunnerTest', function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
env.currentRunner.execute();
|
env.currentRunner.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
var runnerResults = env.currentRunner.getResults();
|
var runnerResults = env.currentRunner.getResults();
|
||||||
expect(runnerResults.totalCount).toEqual(1);
|
expect(runnerResults.totalCount).toEqual(1);
|
||||||
|
@ -83,7 +81,6 @@ describe('RunnerTest', function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
env.currentRunner.execute();
|
env.currentRunner.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
var results = env.currentRunner.getResults();
|
var results = env.currentRunner.getResults();
|
||||||
expect(results.totalCount).toEqual(2);
|
expect(results.totalCount).toEqual(2);
|
||||||
|
|
|
@ -64,7 +64,6 @@ describe("jasmine spec running", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
suite.execute();
|
suite.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(specWithNoBody.description).toEqual('new spec');
|
expect(specWithNoBody.description).toEqual('new spec');
|
||||||
|
|
||||||
|
@ -117,7 +116,6 @@ describe("jasmine spec running", function () {
|
||||||
|
|
||||||
expect(foo).toEqual(0);
|
expect(foo).toEqual(0);
|
||||||
specWithRunsAndWaits.execute();
|
specWithRunsAndWaits.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(foo).toEqual(1);
|
expect(foo).toEqual(1);
|
||||||
fakeTimer.tick(500);
|
fakeTimer.tick(500);
|
||||||
|
@ -142,7 +140,6 @@ describe("jasmine spec running", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
a_spec.execute();
|
a_spec.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(a_spec.results.getItems().length).toEqual(1); // 'No call to waits(): Spec queue did not run all functions';
|
expect(a_spec.results.getItems().length).toEqual(1); // 'No call to waits(): Spec queue did not run all functions';
|
||||||
expect(a_spec.results.getItems()[0].passed()).toEqual(true); // 'No call to waits(): Queued expectation failed';
|
expect(a_spec.results.getItems()[0].passed()).toEqual(true); // 'No call to waits(): Queued expectation failed';
|
||||||
|
@ -163,7 +160,6 @@ describe("jasmine spec running", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
a_spec.execute();
|
a_spec.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(a_spec.results.getItems().length).toEqual(0);
|
expect(a_spec.results.getItems().length).toEqual(0);
|
||||||
|
|
||||||
|
@ -362,7 +358,6 @@ describe("jasmine spec running", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
suite.execute();
|
suite.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(log).toEqual("specafter2after1");
|
expect(log).toEqual("specafter2after1");
|
||||||
});
|
});
|
||||||
|
@ -394,7 +389,6 @@ describe("jasmine spec running", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
suite.execute();
|
suite.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(foo).toEqual(1);
|
expect(foo).toEqual(1);
|
||||||
expect(bar).toEqual(0);
|
expect(bar).toEqual(0);
|
||||||
|
@ -428,7 +422,6 @@ describe("jasmine spec running", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
suiteWithBefore.execute();
|
suiteWithBefore.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
var suite = suiteWithBefore;
|
var suite = suiteWithBefore;
|
||||||
|
|
||||||
|
@ -457,7 +450,6 @@ describe("jasmine spec running", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
suiteWithAfter.execute();
|
suiteWithAfter.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
suite = suiteWithAfter;
|
suite = suiteWithAfter;
|
||||||
expect(suite.afterEach.length).toEqual(1);
|
expect(suite.afterEach.length).toEqual(1);
|
||||||
|
@ -520,7 +512,6 @@ describe("jasmine spec running", function () {
|
||||||
expect(baz).toEqual(0);
|
expect(baz).toEqual(0);
|
||||||
expect(quux).toEqual(0);
|
expect(quux).toEqual(0);
|
||||||
nested.execute();
|
nested.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(foo).toEqual(1);
|
expect(foo).toEqual(1);
|
||||||
expect(bar).toEqual(1);
|
expect(bar).toEqual(1);
|
||||||
|
@ -556,7 +547,6 @@ describe("jasmine spec running", function () {
|
||||||
|
|
||||||
expect(reachedFirstWaitsFor).toEqual(false);
|
expect(reachedFirstWaitsFor).toEqual(false);
|
||||||
waitsSuite.execute();
|
waitsSuite.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(reachedFirstWaitsFor).toEqual(true);
|
expect(reachedFirstWaitsFor).toEqual(true);
|
||||||
expect(foo).toEqual(0);
|
expect(foo).toEqual(0);
|
||||||
|
@ -640,7 +630,6 @@ describe("jasmine spec running", function () {
|
||||||
expect(foo).toEqual(0);
|
expect(foo).toEqual(0);
|
||||||
expect(bar).toEqual(0);
|
expect(bar).toEqual(0);
|
||||||
suiteWithBefore.execute();
|
suiteWithBefore.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(bar).toEqual(0);
|
expect(bar).toEqual(0);
|
||||||
expect(foo).toEqual(1);
|
expect(foo).toEqual(1);
|
||||||
|
@ -682,7 +671,6 @@ describe("jasmine spec running", function () {
|
||||||
expect(foo).toEqual(0);
|
expect(foo).toEqual(0);
|
||||||
|
|
||||||
suiteWithAfter.execute();
|
suiteWithAfter.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
|
|
||||||
expect(firstSpecHasRun).toEqual(true);
|
expect(firstSpecHasRun).toEqual(true);
|
||||||
|
@ -819,7 +807,6 @@ describe("jasmine spec running", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
suite.execute();
|
suite.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(report).toEqual("firstsecond");
|
expect(report).toEqual("firstsecond");
|
||||||
var suiteResults = suite.getResults();
|
var suiteResults = suite.getResults();
|
||||||
|
@ -858,7 +845,6 @@ describe("jasmine spec running", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
suite.execute();
|
suite.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(report).toEqual("firstsecondthird"); // "all tests should run");
|
expect(report).toEqual("firstsecondthird"); // "all tests should run");
|
||||||
//After each errors should not go in spec results because it confuses the count.
|
//After each errors should not go in spec results because it confuses the count.
|
||||||
|
@ -925,7 +911,6 @@ describe("jasmine spec running", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
env.execute();
|
env.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
|
|
||||||
var expected = [
|
var expected = [
|
||||||
|
@ -987,7 +972,6 @@ describe("jasmine spec running", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
env.execute();
|
env.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
var runnerResults = env.currentRunner.getResults();
|
var runnerResults = env.currentRunner.getResults();
|
||||||
expect(runnerResults.totalCount).toEqual(3);
|
expect(runnerResults.totalCount).toEqual(3);
|
||||||
|
@ -1105,7 +1089,6 @@ describe("jasmine spec running", function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
suite.execute();
|
suite.execute();
|
||||||
fakeTimer.tick(0);
|
|
||||||
|
|
||||||
expect(spec1Matcher.matcherForSuite("expected")).toEqual("matcherForSuite: actual: xxx; expected: expected");
|
expect(spec1Matcher.matcherForSuite("expected")).toEqual("matcherForSuite: actual: xxx; expected: expected");
|
||||||
expect(spec1Matcher.matcherForSpec("expected")).toEqual("matcherForSpec: actual: xxx; expected: expected");
|
expect(spec1Matcher.matcherForSpec("expected")).toEqual("matcherForSpec: actual: xxx; expected: expected");
|
||||||
|
|
|
@ -11,6 +11,8 @@ jasmine.Env = function() {
|
||||||
|
|
||||||
this.reporter = new jasmine.MultiReporter();
|
this.reporter = new jasmine.MultiReporter();
|
||||||
|
|
||||||
|
this.updateInterval = 0;
|
||||||
|
|
||||||
this.updateInterval = 0;
|
this.updateInterval = 0;
|
||||||
this.lastUpdate = 0;
|
this.lastUpdate = 0;
|
||||||
this.specFilter = function() {
|
this.specFilter = function() {
|
||||||
|
|
|
@ -49,7 +49,6 @@ jasmine.Queue.prototype._next = function () {
|
||||||
self.finish();
|
self.finish();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var now = new Date().getTime();
|
var now = new Date().getTime();
|
||||||
if (this.env.updateInterval && now - this.env.lastUpdate > this.env.updateInterval) {
|
if (this.env.updateInterval && now - this.env.lastUpdate > this.env.updateInterval) {
|
||||||
this.env.lastUpdate = now;
|
this.env.lastUpdate = now;
|
||||||
|
@ -57,6 +56,7 @@ jasmine.Queue.prototype._next = function () {
|
||||||
} else {
|
} else {
|
||||||
doNext();
|
doNext();
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
jasmine.Queue.prototype.finish = function () {
|
jasmine.Queue.prototype.finish = function () {
|
||||||
|
|
Loading…
Reference in New Issue