Merge pull request #4268 from choiceaustralia/qunit-args

enable args MODULE and FILTER for qunit:test rake task
This commit is contained in:
Sam 2016-06-14 12:49:56 +10:00 committed by GitHub
commit ad15c4ac78

View file

@ -37,6 +37,16 @@ task "qunit:test" => :environment do
test_path = "#{Rails.root}/vendor/assets/javascripts"
cmd = "phantomjs #{test_path}/run-qunit.js http://localhost:#{port}/qunit"
options = {}
%w{module filter}.each do |arg|
options[arg] = ENV[arg.upcase] if ENV[arg.upcase].present?
end
if options.present?
cmd += "?#{options.to_query.gsub('+', '%20')}"
end
# wait for server to respond, will exception out on failure
tries = 0
begin