qunit is opt in now

This commit is contained in:
Sam 2015-05-22 10:05:17 +10:00
parent b12eaf39c0
commit 0681d8f150
1 changed files with 6 additions and 1 deletions

View File

@ -19,7 +19,12 @@ class Autospec::Manager
@mutex = Mutex.new
@signal = ConditionVariable.new
@runners = [ruby_runner]
@runners << javascript_runner unless ENV['NO_QUNIT']
if ENV["QUNIT"] == "1"
@runners << javascript_runner
else
puts "Skipping JS tests, run them in the browser at /qunit or add QUNIT=1 to env"
end
end
def run