tradex/test/tradex_web/controllers/page_controller_test.exs
2025-01-27 14:08:26 +01:00

9 lines
223 B
Elixir

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