()
| 86 | * Check if shell components exist |
| 87 | */ |
| 88 | export function hasShellComponents(): boolean { |
| 89 | // Check if AppShell.tsx exists |
| 90 | const exists = '/src/shell/components/AppShell.tsx' in shellComponentModules |
| 91 | // Debug: log available shell components |
| 92 | console.log('[Shell] hasShellComponents check:', { |
| 93 | exists, |
| 94 | availableComponents: Object.keys(shellComponentModules), |
| 95 | lookingFor: '/src/shell/components/AppShell.tsx' |
| 96 | }) |
| 97 | return exists |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Load shell component dynamically |
no outgoing calls
no test coverage detected