floof-webchat/test/chat_web/controllers/page_controller_test.exs
2022-11-26 17:27:01 +01:00

9 lines
187 B
Elixir

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