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

Feat: setupMocks 함수 분리 및 로컬 백엔드와 분리 #217

Merged
merged 1 commit into from
Nov 23, 2024

Conversation

CLOUDoort
Copy link
Contributor

@CLOUDoort CLOUDoort commented Nov 23, 2024

💡 작업 내용

  • setupMocks 함수 분리
  • 테스트 코드 MSW 실행과 로컬 백엔드 서버를 분리

💡 자세한 설명

테스트 코드 MSW 실행과 로컬 백엔드 서버를 분리

.env 파일에 VITE_USE_MOCK 변수를 둬서 값이 true면 MSW를 실행하고
false면 로컬 백엔드 서버를 실행할 수 있도록 분리했습니다.

export async function setupMocks(): Promise<void> {
  if (import.meta.env.MODE !== 'development') {
    return;
  }

  if (import.meta.env.VITE_USE_MOCK !== 'true') return;

  const { worker } = await import('../test/browser');
  await worker.start({
    onUnhandledRequest: (req) => {
      const url = new URL(req.url);
      if (url.pathname.endsWith('.svg')) {
        return; // .svg 파일 요청을 무시
      }
    },
  });
}

🚩 후속 작업 (선택)

석원님도 .env 파일 설정하셔서 사용하면 될 듯 합니다.

// .env 파일
VITE_USE_MOCK=true

✅ 셀프 체크리스트

  • PR 제목을 형식에 맞게 작성했나요?
  • 브랜치 전략에 맞는 브랜치에 PR을 올리고 있나요? (master/main이 아닙니다.)
  • 이슈는 close 했나요?
  • Reviewers, Labels, Projects를 등록했나요?
  • 작업 도중 문서 수정이 필요한 경우 잘 수정했나요?
  • 테스트는 잘 통과했나요?
  • 불필요한 코드는 제거했나요?

closes #이슈번호

@CLOUDoort CLOUDoort added ⚙️chore 세팅 관련 🧹cleanup 기능 변경 없이 코드만 깔끔하게 수정 labels Nov 23, 2024
@CLOUDoort CLOUDoort requested a review from aquaman122 November 23, 2024 03:01
@CLOUDoort CLOUDoort self-assigned this Nov 23, 2024
Copy link
Contributor

@aquaman122 aquaman122 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

확인했습니다! 고생하셨습니다!

@CLOUDoort CLOUDoort merged commit a65dfa9 into dev Nov 23, 2024
@CLOUDoort CLOUDoort deleted the test/local-backend branch November 23, 2024 11:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⚙️chore 세팅 관련 🧹cleanup 기능 변경 없이 코드만 깔끔하게 수정
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants