Fix QA page refresh address by using absolute URLs

This makes QA page refresh address to be absolute URL since we dropped
`Capybara.app_host`, thus there is no support for relative URLs with
`visit` now.
This commit is contained in:
Grzegorz Bizon 2017-11-11 10:17:04 +01:00
parent a978e9b98d
commit 461b6f328f
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ module QA
include Scenario::Actable
def refresh
visit current_path
visit current_url
end
end
end