We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61a543c commit 46206c0Copy full SHA for 46206c0
test/browser/features/support/maze-config.rb
@@ -16,9 +16,15 @@ def get_test_url()
16
maze_address = "#{host}:9339"
17
end
18
19
+ if Maze.config.https
20
+ protocol = 'https'
21
+ else
22
+ protocol = 'http'
23
+ end
24
+
25
UrlGenerator.new(
- URI("https://#{maze_address}"),
- URI("https://#{maze_address}")
26
+ URI("#{protocol}://#{maze_address}"),
27
+ URI("#{protocol}://#{maze_address}")
28
)
29
30
0 commit comments