mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-15 20:37:55 +08:00
14 lines
272 B
Elixir
14 lines
272 B
Elixir
|
defmodule LivebookWeb.ChannelCase do
|
||
|
use ExUnit.CaseTemplate
|
||
|
|
||
|
using do
|
||
|
quote do
|
||
|
# Import conveniences for testing with channels
|
||
|
import Phoenix.ChannelTest
|
||
|
|
||
|
# The default endpoint for testing
|
||
|
@endpoint LivebookWeb.Endpoint
|
||
|
end
|
||
|
end
|
||
|
end
|