api-v2/test/api_web/controllers/page_controller_test.exs
2025-04-16 10:03:13 -03:00

9 lines
217 B
Elixir

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