2024-12-30 01:59:08 -05:00

12 lines
276 B
Python

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
"""
Integration tests for the /health API endpoint.
"""
def test_health_check(client):
"""Test health check endpoint."""
response = client.get("/health")
assert response.status_code == 200