File tree Expand file tree Collapse file tree 1 file changed +13
-14
lines changed
Expand file tree Collapse file tree 1 file changed +13
-14
lines changed Original file line number Diff line number Diff line change 2222
2323SimpleCov . start
2424
25+ # Globals for all tests
26+ URL = 'http://localhost:7700'
27+ MASTER_KEY = 'masterKey'
28+ DEFAULT_SEARCH_RESPONSE_KEYS = [
29+ 'hits' ,
30+ 'offset' ,
31+ 'limit' ,
32+ 'nbHits' ,
33+ 'exhaustiveNbHits' ,
34+ 'processingTimeMs' ,
35+ 'query'
36+ ] . freeze
37+
2538Dir [ "#{ Dir . pwd } /spec/support/**/*.rb" ] . sort . each { |file | require file }
2639
2740RSpec . configure do |config |
107120 # # as the one that triggered the failure.
108121 # Kernel.srand config.seed
109122
110- # Globals for all tests
111- $URL = 'http://localhost:7700'
112- $MASTER_KEY = 'masterKey'
113- $DEFAULT_SEARCH_RESPONSE_KEYS =
114- [
115- 'hits' ,
116- 'offset' ,
117- 'limit' ,
118- 'nbHits' ,
119- 'exhaustiveNbHits' ,
120- 'processingTimeMs' ,
121- 'query'
122- ]
123-
124123 # Helpers
125124 config . include IndexesHelpers
126125 config . include ExceptionsHelpers
You can’t perform that action at this time.
0 commit comments