Skip to content

Commit

Permalink
refactor: 임시저장 기능 수정 (#1101)
Browse files Browse the repository at this point in the history
* feat: 임시저장 로직 response에 ability 필드 추가

* feat: 플라이웨이에 crate studylog_temp_ability 추가

* test: 문서화 테스트 추가

* refactor: 역량 관련해서 적절한 에러로 수정

* fix: 임시저장 관련 테스트 추가 및 에러 해결

* fix: StudylogTempAbility OnDelete 속성 추가

* feat: comment count svg 변경 (#1063)

* chore: comment svg 수정

* chore: comment svg 수정

* feat: 로드맵을 위한 하위 컴포넌트 구현 (#1047)

* chore: storybook 사용을 위해 reactDocgen 에러 설정

* feat: 상위에서 크기를 제어하는 ResponsiveButton 컴포넌트 구현

* feat: LabelledImage 컴포넌트 구현

* feat: KeywordSection 컴포넌트 구현

* refactor: Omit -> Pick으로 타입 변경

* feat: fontSize를 Style Props 인자로 내려주기

* feat: 로드맵을 위한 하위 컴포넌트 구현(sidesheet modal) (#1048)

* fix: List.of() 제거

Co-authored-by: JUDONGHYEOK <[email protected]>
Co-authored-by: 김의진 <[email protected]>
Co-authored-by: Marco <[email protected]>
  • Loading branch information
4 people authored Oct 28, 2022
1 parent b00a945 commit d991cdd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import static wooteco.prolog.ResponseFixture.MISSION_RESPONSE2;

import io.restassured.module.mockmvc.response.ValidatableMockMvcResponse;
import java.util.Arrays;
import java.util.List;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
Expand All @@ -31,7 +32,7 @@ public class MissionDocumentation extends NewDocumentation {
void 미션_목록을_조회한다() {
//given
given(missionService.findAll())
.willReturn(List.of(MISSION_RESPONSE1, MISSION_RESPONSE2));
.willReturn(Arrays.asList(MISSION_RESPONSE1, MISSION_RESPONSE2));

//when
ValidatableMockMvcResponse response = given
Expand Down

0 comments on commit d991cdd

Please sign in to comment.