Files
music_library/test/music_library_web/controllers/health_controller_test.exs
T
2026-02-09 11:12:02 +00:00

13 lines
303 B
Elixir

defmodule MusicLibraryWeb.HealthControllerTest do
use MusicLibraryWeb.ConnCase
describe "GET /health" do
@tag :logged_out
test "returns 200 with health message", %{conn: conn} do
conn = get(conn, "/health")
assert html_response(conn, 200) =~ "App is running"
end
end
end