mirror of
https://github.com/fastapi/fastapi.git
synced 2026-06-17 20:09:08 -04:00
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Yurii Motov <yurii.motov.monte@gmail.com>
453 B
453 B
WebSocket 테스트하기
같은 TestClient를 사용하여 WebSocket을 테스트할 수 있습니다.
이를 위해 with 문에서 TestClient를 사용하여 WebSocket에 연결합니다:
{* ../../docs_src/app_testing/tutorial002_py310.py hl[27:31] *}
/// note
자세한 내용은 Starlette의 WebSocket 테스트 문서를 확인하세요.
///