elx-scopes/test/scopes_web/controllers/page_controller_test.exs
2025-06-13 17:51:47 +02:00

8 lines
223 B
Elixir

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