Skip to content

Commit

Permalink
test: log all ์‚ญ์ œ
Browse files Browse the repository at this point in the history
  • Loading branch information
BGuga committed Oct 4, 2023
1 parent 53a34fb commit 98e593c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public void login() {
.contentType(ContentType.JSON)
.body(new RootAdminInitializeRequest(password))
.post("admin/initialize")
.then().log().all()
.then()
.statusCode(200);

ExtractableResponse<Response> response = RestAssured.given()
Expand All @@ -56,7 +56,6 @@ public void given() {
.body(request)
.post("admin/festivals")
.then()
.log().all()
.extract()
.body()
.as(FestivalResponse.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public void given() {
FestivalDetailResponse festivalInfo = RestAssured.given()
.when()
.get("festivals/{festivalId}", response.id())
.then().log().all()
.then()
.extract()
.as(FestivalDetailResponse.class);
cucumberClient.addData("searchResult", festivalInfo);
Expand Down

0 comments on commit 98e593c

Please sign in to comment.