From 9864252f88dc1f967cc98d7a109037c8a97f69cd Mon Sep 17 00:00:00 2001 From: hwinkr Date: Sat, 4 Nov 2023 16:09:32 +0900 Subject: [PATCH] =?UTF-8?q?Test:=20=EB=AA=A8=ED=82=B9=ED=95=98=EB=8A=94=20?= =?UTF-8?q?useMajor=20=ED=9B=85=EC=97=90=20graduationLink=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/List/DepartmentList/index.test.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/List/DepartmentList/index.test.tsx b/src/components/List/DepartmentList/index.test.tsx index dadb8d8b..6a231171 100644 --- a/src/components/List/DepartmentList/index.test.tsx +++ b/src/components/List/DepartmentList/index.test.tsx @@ -31,6 +31,7 @@ jest.mock('@hooks/useModals', () => { }); describe.skip('학과선택 테스트', () => { + const mockGraduationLink = 'https://ce.pknu.ac.kr/ce/2889'; const mockUseMajor = useMajor as jest.MockedFunction; const mockSetMajor = jest.fn(); @@ -38,6 +39,7 @@ describe.skip('학과선택 테스트', () => { mockUseMajor.mockReturnValue({ setMajor: mockSetMajor, major: '컴퓨터공학과', + graduationLink: mockGraduationLink, }); });