-
Notifications
You must be signed in to change notification settings - Fork 1
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
Refactor : 테스트 제거 [임시] #29
The head ref may contain hidden characters: "\uAE00\uC791\uC131-\uD398\uC774\uC9C0-\uACE0\uB3C4\uD654"
Conversation
@@ -42,7 +41,6 @@ export default function RootLayout({ | |||
overflow: "auto", | |||
}} | |||
> | |||
<MSWInit></MSWInit> | |||
{children} | |||
</Box> | |||
<NavigationBar /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
위 코드 패치를 간략히 코드 리뷰해 드리겠습니다. 버그 위험 및 개선 제안이 있다면 환영합니다:
import MSWInit from "@/components/mock/MSWInit";
와<MSWInit></MSWInit>
을 제거한 후에도 결과에 영향을 미치지 않는다면, 이 코드는 삭제할 수 있습니다.Pretendard
폰트의 임포트 부분에서~/assets/font/Pretendard
경로를 확인하여 절대 경로 또는 상대 경로로 변경하는 것이 좋습니다.import { Box, GlobalStyles } from "@mui/material";
문장 뒤에 개행이 필요합니다.
개선 제안을 참고하시기 바랍니다.
@@ -29,6 +29,7 @@ | |||
// quoteCount: 0, | |||
// likedByMe: false, | |||
// followedByMe: false, | |||
|
|||
// }; | |||
|
|||
// const meta = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
주어진 코드 패치에 대해 간단한 코드 리뷰를 해 드리겠습니다. 버그 위험과 개선 제안을 환영합니다.
이 코드 패치에서는 등장하지 않으나 특정 질문에 대한 답변으로서, 주석에서 meta
객체가 초기화되지 않았습니다.
개선 제안:
const meta = {}
형태로 meta
객체를 초기화하는 것이 좋습니다. 이렇게 하면 나중에 해당 객체 속성을 추가해야 할 경우 초기 값이 설정되어 있을 겁니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Unit test] 유닛테스트를 통과하지 못했습니다.
No description provided.