jasmine 0.10.2.2 → 0.10.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,7 +10,7 @@ namespace :jasmine do
|
|
10
10
|
t.spec_files = ['spec/javascripts/support/jasmine_runner.rb']
|
11
11
|
end
|
12
12
|
task :server do
|
13
|
-
jasmine_config_overrides = 'spec/javascripts/support/jasmine_config'
|
13
|
+
jasmine_config_overrides = 'spec/javascripts/support/jasmine_config.rb'
|
14
14
|
require jasmine_config_overrides if File.exists?(jasmine_config_overrides)
|
15
15
|
|
16
16
|
puts "your tests are here:"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'jasmine'
|
3
|
-
jasmine_config_overrides = File.expand_path(File.join(File.dirname(__FILE__), 'jasmine_config'))
|
3
|
+
jasmine_config_overrides = File.expand_path(File.join(File.dirname(__FILE__), 'jasmine_config.rb'))
|
4
4
|
require jasmine_config_overrides if File.exists?(jasmine_config_overrides)
|
5
5
|
|
6
6
|
jasmine_config = Jasmine::Config.new
|