fix(portal): Increase receive timeout to alleviate test flakiness (#3168)

The increase I added to the other process receive timeouts seemed to fix
the flakiness there, so trying it for this last test as well.

GH runners can be very slow.


https://github.com/firezone/firezone/actions/runs/7484945854/job/20372602149
This commit is contained in:
Jamil
2024-01-11 07:11:14 -08:00
committed by GitHub
parent 4f37bfab93
commit f4045e612c

View File

@@ -91,6 +91,6 @@ defmodule Domain.Jobs.Executors.GlobalTest do
name = {Domain.Jobs.Executors.Global, __MODULE__, :send_test_message}
assert :global.whereis_name(name) == new_leader_pid
assert_receive {:executed, ^new_leader_pid, _time}, 200
assert_receive {:executed, ^new_leader_pid, _time}, 1000
end
end