()
| 54 | } |
| 55 | |
| 56 | async function readChromeAutoEnableProbe() { |
| 57 | try { |
| 58 | const module = await import('../src/utils/claudeInChrome/setup.js') |
| 59 | return { |
| 60 | status: 'ok', |
| 61 | value: Boolean(module.shouldAutoEnableClaudeInChrome()), |
| 62 | error: '', |
| 63 | } |
| 64 | } catch (error) { |
| 65 | return { |
| 66 | status: 'error', |
| 67 | value: null, |
| 68 | error: error instanceof Error ? error.message : String(error), |
| 69 | } |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | const projectCwd = cwd() |
| 74 | setOriginalCwd(projectCwd) |
no outgoing calls
no test coverage detected