Skip to content

Commit

Permalink
spec/runner: go back to booleans
Browse files Browse the repository at this point in the history
  • Loading branch information
meh committed Feb 4, 2014
1 parent a804f9a commit d5868f1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions spec/runner.rb
Expand Up @@ -26,13 +26,13 @@
cap['browser_version'] = ENV['SELENIUM_VERSION'] if ENV['SELENIUM_VERSION']

cap['browserstack.tunnelIdentifier'] = ENV['TRAVIS_JOB_ID']
cap['browserstack.tunnel'] = 'true'
cap['browserstack.debug'] = 'false'
cap['browserstack.tunnel'] = true
cap['browserstack.debug'] = false

cap['databaseEnabled'] = 'true'
cap['browserConnectionEnabled'] = 'true'
cap['locationContextEnabled'] = 'true'
cap['webStorageEnabled'] = 'true'
cap['databaseEnabled'] = true
cap['browserConnectionEnabled'] = true
cap['locationContextEnabled'] = true
cap['webStorageEnabled'] = true

print 'Loading...'

Expand Down

0 comments on commit d5868f1

Please sign in to comment.