()
| 19 | } |
| 20 | |
| 21 | export function getDefaultDebuggerToolContext(): DebuggerToolContext { |
| 22 | if ((process.env.VITEST === 'true' || process.env.NODE_ENV === 'test') && _testContextOverride) { |
| 23 | return _testContextOverride; |
| 24 | } |
| 25 | return { |
| 26 | executor: getDefaultCommandExecutor(), |
| 27 | debugger: getDefaultDebuggerManager(), |
| 28 | }; |
| 29 | } |
nothing calls this directly
no test coverage detected