Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions frontend/codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
comment:
layout: "diff, flags, files" # PR 리포트에 diff, flags, files 섹션 포함
require_changes: false
require_base: false
1 change: 1 addition & 0 deletions frontend/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/** @type {import('ts-jest').JestConfigWithTsJest} **/

module.exports = {
setupFiles: ['<rootDir>/jest.setup.ts'],
testEnvironment: 'jsdom',
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "",
Expand Down
2 changes: 0 additions & 2 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ import PhotoEditTab from '@/pages/AdminPage/tabs/PhotoEditTab/PhotoEditTab';

const queryClient = new QueryClient();

// [x]TODO: fallback component 추가

const App = () => {
return (
<QueryClientProvider client={queryClient}>
Expand Down