Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ vi.mock('@/lib/server/dashboard-route-helper', () => ({
// error-helper 가 'server-only' 를 transitively import 하지 않도록 모킹.
vi.mock('@/lib/server/error-helper', () => ({
handleRouteError: (err: unknown) => {
console.error('[test] handleRouteError:', err)
return NextResponse.json({ error: 'internal' }, { status: 500 })
},
}))
Expand Down
Loading