mirror of https://github.com/tiangolo/fastapi.git
398 B
398 B
测试 WebSockets
测试 WebSockets 也使用 TestClient。
为此,要在 with 语句中使用 TestClient 连接 WebSocket。
{* ../../docs_src/app_testing/tutorial002.py hl[27:31] *}
/// note | 笔记
更多细节详见 Starlette 官档 - 测试 WebSockets。
///