Sha256: d59ca681cf874701223b017ed2e89b780bb067c48a84eebfdfc94b31ec067bf1

Contents?: true

Size: 1.18 KB

Versions: 6

Compression:

Stored size: 1.18 KB

Contents

require 'spec_helper'

# Run the jasmine tests by running the jasmine:ci rake command and capturing the output
#   The spec will fail if any jasmine tests fails
#
#   If you have a jasmine syntax error the test will fail since there will not be zero failures
#
#   If you add a new jasmine test by adding a file to spec/javascripts/*spec.js* make sure the
#   number of test run increments or you may have a syntax error inside your jasmine test
#
describe "Jasmine" do
  it "expects all jasmine tests to pass" do
    load_rake_environment ["#{jasmine_path}/lib/jasmine/tasks/jasmine.rake"]
    jasmine_out = run_task 'jasmine:ci'
    if jasmine_out.include? "0 failures"
      js_specs_count = Dir['spec/javascripts/**/*_spec.js*'].count
      puts "#{jasmine_out.match(/\n(.+) specs/)[1]} jasmine specs run (in #{js_specs_count} jasmine test files)"
    else
      puts "\n\n************************  Jasmine Output *************"
      puts jasmine_out
      puts "************************  Jasmine Output *************\n\n"
    end
    expect(jasmine_out).to include "0 failures"
    expect(jasmine_out).to_not include "\n0 specs"
  end
end

def jasmine_path
  Gem.loaded_specs['jasmine'].full_gem_path
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sufia-6.7.0 spec/javascripts/jasmine_spec.rb
sufia-6.6.1 spec/javascripts/jasmine_spec.rb
sufia-6.6.0 spec/javascripts/jasmine_spec.rb
sufia-6.5.0 spec/javascripts/jasmine_spec.rb
sufia-6.4.0 spec/javascripts/jasmine_spec.rb
sufia-6.3.0 spec/javascripts/jasmine_spec.rb