Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#143] /docs/app/building-your-application/testing/vitest 문서 수정 #144

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pages/docs/app/building-your-application/testing/vitest.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ description: Learn how to set up Vitest with Next.js for Unit Testing.

# Setting up Vitest with Next.js

Vite와 React Testing Library는 **단위 테스트(Unit Testing)**에 자주 함께 사용됩니다. 이 가이드는 Next.js와 함께 Vitest를 설정하고 첫 번째 테스트를 작성하는 방법을 보여줍니다.
Vite와 React Testing Library는 **단위 테스트**에 자주 함께 사용됩니다. 이 가이드는 Next.js와 함께 Vitest를 설정하고 첫 번째 테스트를 작성하는 방법을 보여줍니다.

> **유용한 정보:** `async` Server Components는 React 생태계에 새롭게 도입되었기 때문에, 현재 Vitest는 이를 지원하지 않습니다. 동기 Server 및 Client Components에 대한 **단위 테스트(Unit Tests)**는 여전히 실행할 수 있지만, `async` 컴포넌트에 대해서는 **E2E 테스트**를 사용하는 것을 권장합니다.
> **유용한 정보:** `async` Server Components는 React 생태계에 새롭게 도입되었기 때문에, 현재 Vitest는 이를 지원하지 않습니다. 여전히 동기 Server 및 Client Components에 대한 **단위 테스트**를 실행할 수 있지만, `async` 컴포넌트에 대해서는 **E2E 테스트**를 사용하는 것을 권장합니다.

## Quickstart

Expand Down
Loading