Sha256: daac114bf808ddeab6e38a84bc5f281c2e897c2bfd8d95f6352778b7c1baeb88
Contents?: true
Size: 611 Bytes
Versions: 7
Compression:
Stored size: 611 Bytes
Contents
#-*- encoding : utf-8 -*- $LOAD_PATH.unshift(ENV['JASMINE_GEM_PATH']) if ENV['JASMINE_GEM_PATH'] # for gem testing purposes require 'rubygems' require 'jasmine' require 'rspec' jasmine_config_overrides = File.expand_path(File.join(File.dirname(__FILE__), 'jasmine_config.rb')) require jasmine_config_overrides if File.exist?(jasmine_config_overrides) 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
Version data entries
7 entries across 7 versions & 1 rubygems