live_beats/test/live_beats_web/controllers/page_controller_test.exs
2021-09-08 10:58:32 -04:00

9 lines
194 B
Elixir

defmodule LiveBeatsWeb.PageControllerTest do
use LiveBeatsWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, "/")
assert html_response(conn, 200) =~ "LiveBeats"
end
end