From 13eecf01952ff84aec42e6111dc5e7d29c70634a Mon Sep 17 00:00:00 2001 From: Junseo Kim Date: Tue, 20 May 2025 11:45:59 +0900 Subject: [PATCH 01/11] =?UTF-8?q?fix:=20jest.config.js=20=EC=9D=B8?= =?UTF-8?q?=EC=8B=9D=20=EC=9C=84=ED=95=B4=20coverage=20=EC=8A=A4=ED=81=AC?= =?UTF-8?q?=EB=A6=BD=ED=8A=B8=EC=97=90=20=EC=84=A4=EC=A0=95=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EA=B2=BD=EB=A1=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/package.json b/frontend/package.json index d4acc9d9d..88dc2379e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -13,7 +13,7 @@ "build-storybook": "storybook build", "chromatic": "chromatic --project-token=$CHROMATIC_PROJECT_TOKEN", "test": "jest", - "coverage": "jest --coverage" + "coverage": "jest --coverage --config jest.config.js" }, "keywords": [], "author": "", From 2035792fc0c6e85662ffdbbbff59b29b31c94187 Mon Sep 17 00:00:00 2001 From: Junseo Kim Date: Tue, 20 May 2025 12:20:10 +0900 Subject: [PATCH 02/11] =?UTF-8?q?refactor:=20=EB=B6=88=ED=95=84=EC=9A=94?= =?UTF-8?q?=20=EC=A3=BC=EC=84=9D=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/App.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index d1dcb0967..a08a8841e 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -17,8 +17,6 @@ import PhotoEditTab from '@/pages/AdminPage/tabs/PhotoEditTab/PhotoEditTab'; const queryClient = new QueryClient(); -// [x]TODO: fallback component 추가 - const App = () => { return ( From 532e407ea6e5c76b532c679478668b1d88bf2d62 Mon Sep 17 00:00:00 2001 From: Junseo Kim Date: Tue, 20 May 2025 12:23:56 +0900 Subject: [PATCH 03/11] =?UTF-8?q?test:=20github=20action=20=ED=85=8C?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=EB=A5=BC=20=EC=9C=84=ED=95=B4=20=EA=B3=B5?= =?UTF-8?q?=EB=B0=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/jest.config.js b/frontend/jest.config.js index c3e6e5479..7bc528f86 100644 --- a/frontend/jest.config.js +++ b/frontend/jest.config.js @@ -1,4 +1,5 @@ /** @type {import('ts-jest').JestConfigWithTsJest} **/ + module.exports = { setupFiles: ['/jest.setup.ts'], testEnvironment: 'jsdom', From 728340e5a917ba2a24867022d4722da741099480 Mon Sep 17 00:00:00 2001 From: Junseo Kim Date: Tue, 20 May 2025 12:27:04 +0900 Subject: [PATCH 04/11] =?UTF-8?q?test:=20github=20action=20=ED=85=8C?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=EB=A5=BC=20=EC=9C=84=ED=95=B4=20=EA=B3=B5?= =?UTF-8?q?=EB=B0=B1=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/jest.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/jest.config.js b/frontend/jest.config.js index 7bc528f86..c3e6e5479 100644 --- a/frontend/jest.config.js +++ b/frontend/jest.config.js @@ -1,5 +1,4 @@ /** @type {import('ts-jest').JestConfigWithTsJest} **/ - module.exports = { setupFiles: ['/jest.setup.ts'], testEnvironment: 'jsdom', From 4b39fb67a7ec3e600428014147c73b879faa2e2e Mon Sep 17 00:00:00 2001 From: Junseo Kim Date: Tue, 20 May 2025 12:29:28 +0900 Subject: [PATCH 05/11] =?UTF-8?q?test:=20github=20action=20=ED=85=8C?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=EB=A5=BC=20=EC=9C=84=ED=95=B4=20=EA=B3=B5?= =?UTF-8?q?=EB=B0=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/jest.config.js b/frontend/jest.config.js index c3e6e5479..7bc528f86 100644 --- a/frontend/jest.config.js +++ b/frontend/jest.config.js @@ -1,4 +1,5 @@ /** @type {import('ts-jest').JestConfigWithTsJest} **/ + module.exports = { setupFiles: ['/jest.setup.ts'], testEnvironment: 'jsdom', From 8b062b3c6808400b6c7c7a9bbb98da9313c7151a Mon Sep 17 00:00:00 2001 From: Junseo Kim Date: Tue, 20 May 2025 12:38:14 +0900 Subject: [PATCH 06/11] =?UTF-8?q?test:=20github=20action=20=ED=85=8C?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=EB=A5=BC=20=EC=9C=84=ED=95=B4=20=EA=B3=B5?= =?UTF-8?q?=EB=B0=B1=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/jest.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/jest.config.js b/frontend/jest.config.js index 7bc528f86..c3e6e5479 100644 --- a/frontend/jest.config.js +++ b/frontend/jest.config.js @@ -1,5 +1,4 @@ /** @type {import('ts-jest').JestConfigWithTsJest} **/ - module.exports = { setupFiles: ['/jest.setup.ts'], testEnvironment: 'jsdom', From e6f72acbda3a62632fa886b4e7c177a4df57eb1f Mon Sep 17 00:00:00 2001 From: Junseo Kim Date: Tue, 20 May 2025 12:46:49 +0900 Subject: [PATCH 07/11] =?UTF-8?q?chore:=20PR=20=EC=BB=A4=EB=B2=84=EB=A6=AC?= =?UTF-8?q?=EC=A7=80=20=EC=BD=94=EB=A9=98=ED=8A=B8=20=EB=B0=8F=20CI=20?= =?UTF-8?q?=ED=86=B5=ED=95=A9=EC=9D=84=20=EC=9C=84=ED=95=9C=20Codecov=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/codecov.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 frontend/codecov.yml diff --git a/frontend/codecov.yml b/frontend/codecov.yml new file mode 100644 index 000000000..9eab72511 --- /dev/null +++ b/frontend/codecov.yml @@ -0,0 +1,10 @@ +codecov: + require_ci_to_pass: yes + +comment: + layout: "reach,diff,flags,files,footer" + behavior: default + require_changes: false + branches: + - develop-fe + - main \ No newline at end of file From 2e18bb9540dd5cd190d7c5d092926e5f96c840ad Mon Sep 17 00:00:00 2001 From: Junseo Kim Date: Tue, 20 May 2025 13:08:24 +0900 Subject: [PATCH 08/11] =?UTF-8?q?test:=20GitHub=20Actions=20=EB=8F=99?= =?UTF-8?q?=EC=9E=91=20=ED=99=95=EC=9D=B8=EC=9D=84=20=EC=9C=84=ED=95=9C=20?= =?UTF-8?q?=EA=B3=B5=EB=B0=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/jest.config.js b/frontend/jest.config.js index c3e6e5479..7bc528f86 100644 --- a/frontend/jest.config.js +++ b/frontend/jest.config.js @@ -1,4 +1,5 @@ /** @type {import('ts-jest').JestConfigWithTsJest} **/ + module.exports = { setupFiles: ['/jest.setup.ts'], testEnvironment: 'jsdom', From c486c7b3ac0d1a78abcfcc149da9940afdfed2a3 Mon Sep 17 00:00:00 2001 From: Junseo Kim Date: Tue, 20 May 2025 14:28:49 +0900 Subject: [PATCH 09/11] =?UTF-8?q?test:=20GitHub=20Actions=20=EB=8F=99?= =?UTF-8?q?=EC=9E=91=20=ED=99=95=EC=9D=B8=20=ED=85=8C=EC=8A=A4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/jest.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/jest.config.js b/frontend/jest.config.js index 7bc528f86..c3e6e5479 100644 --- a/frontend/jest.config.js +++ b/frontend/jest.config.js @@ -1,5 +1,4 @@ /** @type {import('ts-jest').JestConfigWithTsJest} **/ - module.exports = { setupFiles: ['/jest.setup.ts'], testEnvironment: 'jsdom', From 0007a128e41b1ae3ef7642c27fe535695ff5fa90 Mon Sep 17 00:00:00 2001 From: Junseo Kim Date: Tue, 20 May 2025 15:13:18 +0900 Subject: [PATCH 10/11] =?UTF-8?q?test:=20GitHub=20Actions=20=EB=8F=99?= =?UTF-8?q?=EC=9E=91=20=ED=99=95=EC=9D=B8=20=ED=85=8C=EC=8A=A4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/jest.config.js b/frontend/jest.config.js index c3e6e5479..7bc528f86 100644 --- a/frontend/jest.config.js +++ b/frontend/jest.config.js @@ -1,4 +1,5 @@ /** @type {import('ts-jest').JestConfigWithTsJest} **/ + module.exports = { setupFiles: ['/jest.setup.ts'], testEnvironment: 'jsdom', From 0137cc4c54fc3cc86794e5a3954354b3cce834c7 Mon Sep 17 00:00:00 2001 From: Junseo Kim Date: Tue, 20 May 2025 17:10:42 +0900 Subject: [PATCH 11/11] =?UTF-8?q?chore:=20Codecov=20=EC=84=A4=EC=A0=95=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/codecov.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/frontend/codecov.yml b/frontend/codecov.yml index 9eab72511..763f0bd24 100644 --- a/frontend/codecov.yml +++ b/frontend/codecov.yml @@ -1,10 +1,4 @@ -codecov: - require_ci_to_pass: yes - comment: - layout: "reach,diff,flags,files,footer" - behavior: default + layout: "diff, flags, files" # PR 리포트에 diff, flags, files 섹션 포함 require_changes: false - branches: - - develop-fe - - main \ No newline at end of file + require_base: false \ No newline at end of file