API - add typing
This commit is contained in:
@ -1,8 +1,10 @@
|
||||
import json
|
||||
|
||||
from flask import Flask
|
||||
|
||||
|
||||
class TestHealthCheck:
|
||||
def test_it_returns_pong_on_health_check(self, app):
|
||||
def test_it_returns_pong_on_health_check(self, app: Flask) -> None:
|
||||
""" => Ensure the /health_check route behaves correctly."""
|
||||
client = app.test_client()
|
||||
response = client.get('/api/ping')
|
||||
|
Reference in New Issue
Block a user