Skip to content

Commit

Permalink
Disable async feature tests
Browse files Browse the repository at this point in the history
  - because the asynchronous Wallaby tests seem to share the same phantom JS server instance,
  the tests were conflicting when starting multiple browser sessions, owing to the fact that we're using websocket updates from all connecting browsers. need to do more digging to turn this back on
  • Loading branch information
vanderhoop committed Jan 28, 2017
1 parent 885aab8 commit 0a48f5c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/features/lobby_realtime_update_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule LobbyRealtimeUpdateTest do
use RemoteRetro.IntegrationCase, async: true
use RemoteRetro.IntegrationCase, async: false

test "the realtime updates of other users entering/leaving the room", %{session: session_one} do
join_retro_as_user(session_one, "Todd Grundy")
Expand All @@ -20,5 +20,7 @@ defmodule LobbyRealtimeUpdateTest do
user_list_text = session_one |> find("#user-list") |> text

refute String.contains?(user_list_text, "Martha Bernham")

Wallaby.end_session(session_one)
end
end

0 comments on commit 0a48f5c

Please sign in to comment.