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 3bf50f8 commit 632251cCopy full SHA for 632251c
test/ex_webrtc/peer_connection_test.exs
@@ -534,5 +534,11 @@ defmodule ExWebRTC.PeerConnectionTest do
534
assert :ok == PeerConnection.close(pc)
535
assert false == Process.alive?(pc)
536
Enum.each(links, fn link -> assert false == Process.alive?(link) end)
537
+
538
+ {:ok, pc} = PeerConnection.start()
539
+ {:links, links} = Process.info(pc, :links)
540
+ assert true == Process.exit(pc, :shutdown)
541
+ assert false == Process.alive?(pc)
542
+ Enum.each(links, fn link -> assert false == Process.alive?(link) end)
543
end
544
0 commit comments