Skip to content

Commit

Permalink
spec/runner: use strings for capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
meh committed Feb 4, 2014
1 parent ad2e171 commit a804f9a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/runner.rb
Expand Up @@ -29,10 +29,10 @@
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 a804f9a

Please sign in to comment.