Current section

Files

Jump to
combo_new templates vite test web controllers page_controller_test.exs
Raw

templates/vite/test/web/controllers/page_controller_test.exs

defmodule MyApp.Web.PageControllerTest do
use MyApp.Web.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, ~p"/")
assert html_response(conn, 200) =~ "Combo"
end
end