Remove unnecessary Jasmine.configure.

This commit is contained in:
Gregg Van Hove and Rajan Agaskar
2013-09-20 11:16:14 -07:00
parent 8f0f0a607e
commit 5e279a1393

View File

@@ -38,11 +38,9 @@ if ENV['USE_SAUCE'] == 'true'
webdriver = Selenium::WebDriver.for :remote, :url => url, :desired_capabilities => capabilities
end
Jasmine.configure do |config|
config.webdriver = webdriver if webdriver
config.browser = browser if browser
config.runner = Jasmine::Runners::HTTP
end
config.webdriver = webdriver if webdriver
config.browser = browser if browser
config.runner = Jasmine::Runners::HTTP
server = Jasmine::Server.new(config.port, Jasmine::Application.app(config))
t = Thread.new do