mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
enable args MODULE and FILTER for qunit:test rake task
This commit is contained in:
parent
e97e0bb311
commit
d2bd857160
1 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue