diff --git a/test/controllers/server/dashboard_controller_test.rb b/test/controllers/server/dashboard_controller_test.rb index 6d8882ab319a6b4aee7f23d492ed9c72d5cc2854..86a7a9932654222f0d322804d64f242958e6e33f 100644 --- a/test/controllers/server/dashboard_controller_test.rb +++ b/test/controllers/server/dashboard_controller_test.rb @@ -4,7 +4,9 @@ class Server::DashboardControllerTest < ActionDispatch::IntegrationTest include ServerSetup def test_index - get server_root_path - assert_response(:success) + VCR.use_cassette(location) do + get server_root_path + assert_response(:success) + end end end