mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
21 lines
593 B
Ruby
21 lines
593 B
Ruby
|
$:.unshift(ENV['JASMINE_GEM_PATH']) if ENV['JASMINE_GEM_PATH'] # for gem testing purposes
|
||
|
|
||
|
require 'rubygems'
|
||
|
require 'jasmine'
|
||
|
jasmine_config_overrides = File.expand_path(File.join(File.dirname(__FILE__), 'jasmine_config.rb'))
|
||
|
require jasmine_config_overrides if File.exists?(jasmine_config_overrides)
|
||
|
|
||
|
jasmine_config = Jasmine::Config.new
|
||
|
spec_builder = Jasmine::SpecBuilder.new(jasmine_config)
|
||
|
|
||
|
should_stop = false
|
||
|
|
||
|
Spec::Runner.configure do |config|
|
||
|
config.after(:suite) do
|
||
|
spec_builder.stop if should_stop
|
||
|
end
|
||
|
end
|
||
|
|
||
|
spec_builder.start
|
||
|
should_stop = true
|
||
|
spec_builder.declare_suites
|