Skip to content

Commit

Permalink
fix : 원래 상태로 CI Flow 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
KNU-K committed Jun 23, 2024
1 parent 6ef250c commit 667850c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main # 푸시된 코드가 main 브랜치일 때만 실행

jobs:
test:
graphql-rest-api-test:
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion test/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe("✅ RestAPI test", () => {
const reviewRes = await request(app).get("/api/review/1");
expect(userRes.status).toBe(200);
expect(userRes.body).toHaveProperty("id");
expect(userRes.body).toHaveProperty("naddme");
expect(userRes.body).toHaveProperty("name");
expect(userRes.body).toHaveProperty("email");
expect(userRes.body).toHaveProperty("age");
expect(userRes.body).toHaveProperty("phone");
Expand Down

0 comments on commit 667850c

Please sign in to comment.