diff --git a/backend/src/controllers/auth/kakaoAuth.ts b/backend/src/controllers/auth/kakaoAuth.ts index 3396378e..09ab202e 100644 --- a/backend/src/controllers/auth/kakaoAuth.ts +++ b/backend/src/controllers/auth/kakaoAuth.ts @@ -70,7 +70,7 @@ export const getKakaoLogin = async (req: Request, res: Response) => { console.log(userData); return res.status(200).send(userData); } catch (err) { - console.log("error"); + console.log("loginerror", err); res.status(401).send("Unauthorized"); } }; diff --git a/backend/src/controllers/post/getRecentPosts.ts b/backend/src/controllers/post/getRecentPosts.ts index 00698359..087bb454 100644 --- a/backend/src/controllers/post/getRecentPosts.ts +++ b/backend/src/controllers/post/getRecentPosts.ts @@ -38,7 +38,6 @@ export const getRecentPosts = async ( }); res.status(200).json(postsWithLikeStatus); } catch (err) { - console.log(err); return res .status(500) .json({ error: "Recent Posts Internal Server Error " }); diff --git a/backend/src/utils/getUserObjectId.ts b/backend/src/utils/getUserObjectId.ts index ec80e16f..089d139f 100644 --- a/backend/src/utils/getUserObjectId.ts +++ b/backend/src/utils/getUserObjectId.ts @@ -22,7 +22,6 @@ export const getUserObjectId = async ( ).lean(); return userData?._id; } catch (err) { - console.log("getUserObjectId error", err); return null; } }; diff --git a/frontend/src/hooks/useAuth.ts b/frontend/src/hooks/useAuth.ts index 6675d33f..63696603 100644 --- a/frontend/src/hooks/useAuth.ts +++ b/frontend/src/hooks/useAuth.ts @@ -23,6 +23,7 @@ export default function useAuth() { const handleLogout = useContext(LogoutContext); const login = async () => { + console.log(search); if (search === null) { toast.error("유효하지 않은 로그인 코드입니다."); router.replace("/"); diff --git a/frontend/test/__snapshots__/page.test.tsx.snap b/frontend/test/__snapshots__/page.test.tsx.snap new file mode 100644 index 00000000..9ed4fa2b --- /dev/null +++ b/frontend/test/__snapshots__/page.test.tsx.snap @@ -0,0 +1,984 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`renders homepage unchanged: fwfqw 1`] = ` +
+
+
+
+
+
+ +
+
+ + + +
+
+ + + +
+
+
+
+
+
+
+
    +
  • + +
  • +

    + HANRORO +

    +
  • + 2000.11.11 +
  • +
  • + 다가올 미래를 두려워하는 청춘에게 손을 건네는 것으로 그의 작품은 시작됩니다. 누구보다 자신의 두려움이 크지만, 못지않은 용기로 한로로는 분연히 시대의 아픔을 관통하고 우리와 유대합니다. +
  • +
  • + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  • +
+
+
+
+ +
+
+
+
    +
  • + Discography +
  • +
    +
      + [object Object] +
      +

      + 그런 날 + + + + + + +

      +

      + 작사 첨여 +

      +
      +
    +
      + [object Object] +
      +

      + 다이아몬드 + + + + + + +

      +

      + 작사 참여 +

      +
      +
    +
      + [object Object] +
      +

      + Do What You Like + + + + + + +

      +

      + OST +

      +
      +
    +
      + [object Object] +
      +

      + Like my groove + + + + + + +

      +

      + 콜라보 싱글 +

      +
      +
    +
      + [object Object] +
      +

      + 당신의 밤은 나의 밤과 +같습니까 (feat.숨비) + + + + + + +

      +

      + 프로젝트 싱글 +

      +
      +
    +
      + [object Object] +
      +

      + Romantico (feat. 한로로) + + + + + + +

      +

      + 피쳐링 +

      +
      +
    +
      + [object Object] +
      +

      + 물수제비 + + + + + + +

      +

      + 프로듀싱 참여 +

      +
      +
    +
    +
+
+
+
+
    +
    +
  • + Interview +
  • +
      +

      + “저는 일단 노래를 시작하게 된 이유가 제 이야기를 어딘가에 +풀어내보고 싶단 생각에서였어요. 말로 하기엔 뭔가 민망하고, 얼굴을 +모르는 사람들에게도 내 메세지를 전하면서 소통할 수 있으면 좋겠다는 +생각을 하며 노래를 시작하게 된 것 같아요.”... +

      + + MORE + + + + +
    +
    +
+
+
+
+`; diff --git a/frontend/test/page.test.tsx b/frontend/test/page.test.tsx new file mode 100644 index 00000000..5579431c --- /dev/null +++ b/frontend/test/page.test.tsx @@ -0,0 +1,33 @@ +import AboutPage from "@/app/about/page"; +import { getByText, render, waitFor } from "@testing-library/react"; + +it("renders homepage unchanged", async () => { + const observeSpy = jest.fn(); + + global.ResizeObserver = class MockedResizeObserver { + constructor(cb: ResizeObserverCallback) { + setTimeout(() => { + cb( + [ + { + contentRect: { + height, + width, + }, + }, + ] as ResizeObserverEntry[], + this, + ); + }, 150); + } + // Attaching spy to "observe" function. + observe = observeSpy; + unobserve = jest.fn(); + disconnect = jest.fn(); + }; + const { container } = render(); + await waitFor(() => { + getByText(container, "About"); + }); + expect(container).toMatchSnapshot("fwfqw"); +});