chronoscope/test/chronoscope_web/controllers/api/v1/health_controller_test.exs

13 lines
286 B
Elixir
Raw Normal View History

2024-03-18 16:12:41 -04:00
defmodule ChronoscopeWeb.API.V1.HealthControllerTest do
use ChronoscopeWeb.ConnCase, async: true
test "indicates health", %{conn: conn} do
response =
conn
|> get(~p"/api/v1/health")
|> json_response(200)
assert %{"healthy" => true} == response
end
end