-
Notifications
You must be signed in to change notification settings - Fork 46
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
Team 11/assignment #15
base: team-11
Are you sure you want to change the base?
Conversation
KdHyeon0661
commented
May 15, 2022
Team 11 201802086
5/11 19:41/ 201802109
# Conflicts: # src/vo/TodoItem.js # src/vo/TodoList.js
jest.spyOn(todoItem3, "equalsDayOfCreatedAt").mockImplementation(() => false); | ||
jest.spyOn(todoItem4, "equalsDayOfCreatedAt").mockImplementation(() => false); | ||
jest.spyOn(todoItem5, "equalsDayOfCreatedAt").mockImplementation(() => false); | ||
jest.spyOn(todoItem2, "completed", "get").mockReturnValue(() => true); |
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.
returnValue로 함수를 넣었기 때문에, true가 아닌 함수를 반환합니다.
함수를 반환하는 것이 아니라 true로 반환을 해주어야합니다.
수정이 필요합니다.
우연히 completed가 함수를 반환하다보니, 테스트도 통과했을 것 같네요.
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.
수정했습니다. 이걸 오늘 봤습니다.
change the file