defmodule MicrowavepropWeb.HealthControllerTest do use MicrowavepropWeb.ConnCase, async: true test "GET /health returns 200 ok", %{conn: conn} do conn = get(conn, "/health") assert response(conn, 200) == "ok" assert response_content_type(conn, :text) =~ "text/plain" end end