mirror of
https://github.com/fastapi/fastapi.git
synced 2026-04-25 01:09:10 -04:00
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
398 B
398 B
测试 WebSockets
测试 WebSockets 也使用 TestClient。
为此,要在 with 语句中使用 TestClient 连接 WebSocket。
{* ../../docs_src/app_testing/tutorial002.py hl[27:31] *}
/// note | 笔记
更多细节详见 Starlette 官档 - 测试 WebSockets。
///