This repository has been archived on 2025-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
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