intisync.ex/test/intisync_web/controllers/page_controller_test.exs
Victor Martinez 388ee90bb3 first commit
2024-03-23 16:20:44 +01:00

8 lines
227 B
Elixir

defmodule IntisyncWeb.PageControllerTest do
use IntisyncWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, ~p"/")
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
end
end