From ef3e81b078b11e7f36b7af311b8523290b575da0 Mon Sep 17 00:00:00 2001 From: seorang42 Date: Sat, 14 Feb 2026 17:44:50 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=94=A8=20Fix:=20meetingFormModal?= =?UTF-8?q?=EC=9D=98=20=EB=A1=9C=EB=94=A9=20=EB=A9=94=EC=84=B8=EC=A7=80=20?= =?UTF-8?q?Portal=20Mocking=EC=9C=BC=EB=A1=9C=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/__tests__/landing/MeetingFormModal.test.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/components/__tests__/landing/MeetingFormModal.test.tsx b/frontend/src/components/__tests__/landing/MeetingFormModal.test.tsx index fcb1ef29..1981dd98 100644 --- a/frontend/src/components/__tests__/landing/MeetingFormModal.test.tsx +++ b/frontend/src/components/__tests__/landing/MeetingFormModal.test.tsx @@ -37,6 +37,12 @@ jest.mock('@/components/common/Modal', () => { }; }); +jest.mock('@/components/common/Portal', () => { + return function MockPortal({ children }: { children: React.ReactNode }) { + return
{children}
; + }; +}); + describe('MeetingFormModal 컴포넌트 테스트', () => { const closeModal = jest.fn(); const push = jest.fn(); From bd46096ac1b2b82a0aa755853eba3892a834a527 Mon Sep 17 00:00:00 2001 From: seorang42 Date: Sat, 14 Feb 2026 18:12:27 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=94=A8=20Fix:=20jest=20=ED=85=8C?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=EC=8B=A4=ED=96=89=20=EC=8B=9C=20Playwrigh?= =?UTF-8?q?t=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20=EC=8B=A4=ED=96=89=ED=95=98?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EA=B2=8C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/jest.config.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/jest.config.ts b/frontend/jest.config.ts index b23cbf2c..f6b18406 100644 --- a/frontend/jest.config.ts +++ b/frontend/jest.config.ts @@ -171,9 +171,7 @@ const config: Config = { // ], // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped - // testPathIgnorePatterns: [ - // "/node_modules/" - // ], + testPathIgnorePatterns: ['/node_modules/', '/.next/', '/tests/'], // The regexp pattern or array of patterns that Jest uses to detect test files // testRegex: [],