Files
fastapi/docs/ko/docs/advanced/testing-websockets.md
Sebastián Ramírez 7e63d4250a 🌐 Update translations for ko (update-outdated) (#15170)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Yurii Motov <yurii.motov.monte@gmail.com>
2026-03-20 15:06:26 +01:00

453 B

WebSocket 테스트하기

같은 TestClient를 사용하여 WebSocket을 테스트할 수 있습니다.

이를 위해 with 문에서 TestClient를 사용하여 WebSocket에 연결합니다:

{* ../../docs_src/app_testing/tutorial002_py310.py hl[27:31] *}

/// note

자세한 내용은 Starlette의 WebSocket 테스트 문서를 확인하세요.

///