Files
elixirAI/test/elixir_ai_web/controllers/page_controller_test.exs
Alex Mickelson 4dc4814b2f
Some checks failed
CI/CD Pipeline / build (push) Failing after 3s
working on db logic
2026-03-12 15:01:33 -06:00

10 lines
227 B
Elixir

defmodule ElixirAiWeb.PageControllerTest do
use ElixirAiWeb.ConnCase
# homepage need db to test
test "GET /", %{conn: conn} do
conn = get(conn, ~p"/")
assert html_response(conn, 200) =~ "Conversations"
end
end