-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: msw, msw-storybook-addon의 버전을 최신 버전으로 업데이트 - msw의 최신 버전과 msw-storybook-addon의 구버전의 peer dependencies가 일치하지 않아 msw-storybook-addon도 업데이트를 진행 * chore: msw를 `2.1.7`로, msw-storybook-addon의 버전을 최신 버전으로 업데이트 - msw의 `2`버전과 msw-storybook-addon의 구버전의 peer dependencies가 일치하지 않아 msw-storybook-addon도 업데이트를 진행 - msw를 최신 버전으로 업데이트 하지 않는 이유는 `2.1.7` 보다 높은 버전에서 "Cannot read properties of undefined (reading 'url')" 가 발생하기 때문 * chore: mockServiceWorker.js를 생성 * chore: 지금까지의 핸들러 모킹 코드들을 `v2`로 마이그레이션 * chore: msw가 실행되는 시점을 렌더링 이전 시점으로 두도록 변경 - 간헐적인 에러가 발생하는 것을 방지 * chore: http 모듈에 요청 시의 body 타입을 추가 - `v1`과 달리 `v2`는 `response.json()`이 `any`로 추론되지 않으며, 이로 인해 타입 에러가 발생함 - 따라서 제네릭을 이용해 body의 타입을 지정 * chore: msw를 최신 버전으로 업데이트 - 제시되었던 오류가 해결된 것으로 확인
- Loading branch information
Showing
10 changed files
with
9,416 additions
and
3,839 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { setupWorker } from 'msw'; | ||
import { setupWorker } from 'msw/browser'; | ||
import { handlers } from '~/mocks/handlers'; | ||
|
||
export const worker = setupWorker(...handlers); |
Oops, something went wrong.