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

509 B

WebSocket 테스트하기

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

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

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

/// note | 참고

자세한 내용은 Starlette의 testing WebSockets 문서를 확인하세요.

///