We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
/login
그래서 현재 리프레쉬 토큰 재발급 로직이 애플리케이션을 새로고침하는 경우 제대로 동작하지 않는다. (리프레쉬 토큰 있어도 loader에서 API 요청시 MSW가 켜있지 않아 SyntaxError의 발생하여 무조건 다시 로그인해야한다.)
https://mswjs.io/docs/recipes/deferred-mounting
docs에 따르면 모킹이 실행된 후 React root를 DOM에 마운팅할 수 있는데, 나는 해봤는데 안 된다...
// src/index.js import React from 'react' import ReactDOM from 'react-dom' import App from './App' function prepare() { if (process.env.NODE_ENV === 'development') { const { worker } = require('./mocks/browser') return worker.start() } return Promise.resolve() } prepare().then(() => { ReactDOM.render(<App />, document.getElementById('root')) })
이거 해보고 안되어서 이슈 열었던 게 3월인데
mswjs/msw#1653
msw 이슈보니까 6월에 동일한 이슈가 아직도 열려있다.
The text was updated successfully, but these errors were encountered:
leegwae
No branches or pull requests
🔄 How to reproduce bug
/login
)그래서 현재 리프레쉬 토큰 재발급 로직이 애플리케이션을 새로고침하는 경우 제대로 동작하지 않는다. (리프레쉬 토큰 있어도 loader에서 API 요청시 MSW가 켜있지 않아 SyntaxError의 발생하여 무조건 다시 로그인해야한다.)
현재 상황
https://mswjs.io/docs/recipes/deferred-mounting
docs에 따르면 모킹이 실행된 후 React root를 DOM에 마운팅할 수 있는데, 나는 해봤는데 안 된다...
이거 해보고 안되어서 이슈 열었던 게 3월인데
mswjs/msw#1653
msw 이슈보니까 6월에 동일한 이슈가 아직도 열려있다.
The text was updated successfully, but these errors were encountered: