Files
component-system/test/components_elixir_web/controllers/page_controller_test.exs
2025-09-13 22:17:48 +02:00

9 lines
243 B
Elixir

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