Sha256: f4c5c2c131ae9b8f593f0d09e1fad969035e5a932294d5335954783337299fde
Contents?: true
Size: 451 Bytes
Versions: 78
Compression:
Stored size: 451 Bytes
Contents
require 'spec_helper' require 'jslint' %x[which java] if $? == 0 # Only run the JS Lint test if Java is installed describe "Javascript" do before do @lint = JSLint::Lint.new( :paths => ['public/javascripts/**/*.js'], :exclude_paths => ['public/javascripts/vendor/**/*.js'], :config_path => 'spec/support/jslint.yml' ) end it "should not have any syntax errors" do @lint.run end end end
Version data entries
78 entries across 78 versions & 6 rubygems