Files
2025-03-13 20:35:14 -06:00

9 lines
231 B
Elixir

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