12 lines
271 B
Elixir
12 lines
271 B
Elixir
defmodule AprsmeWeb.PageHTMLTest do
|
|
use ExUnit.Case, async: true
|
|
|
|
import Phoenix.LiveViewTest
|
|
|
|
alias AprsmeWeb.PageHTML
|
|
|
|
test "packets/1 renders the packets template" do
|
|
html = render_component(&PageHTML.packets/1, %{})
|
|
assert html =~ "Packets"
|
|
end
|
|
end
|