193 specs | 5 failing The 5 failing specs appear (according to Firebug) to be due to missing fixtures and/or missing routes in the Jasmine environment. Fixing these last 5 failures is a task probably best left to a more experienced Javascript/Jasmine developer. This commit also moves validation.js and clear-form.js into app/assets/javascripts and precompiles validation.js
21 lines
456 B
Ruby
21 lines
456 B
Ruby
$:.unshift(ENV['JASMINE_GEM_PATH']) if ENV['JASMINE_GEM_PATH'] # for gem testing purposes
|
|
|
|
ENV["JASMINE_BROWSER"] = "firefox"
|
|
|
|
require 'rubygems'
|
|
require 'json'
|
|
require 'jasmine'
|
|
require 'rspec'
|
|
|
|
jasmine_config = Jasmine::Config.new
|
|
spec_builder = Jasmine::SpecBuilder.new(jasmine_config)
|
|
|
|
should_stop = false
|
|
|
|
RSpec.configuration.after(:suite) do
|
|
spec_builder.stop if should_stop
|
|
end
|
|
|
|
spec_builder.start
|
|
should_stop = true
|
|
spec_builder.declare_suites
|