| 21 | |
| 22 | // Custom error to identify mock process.exit calls |
| 23 | class MockProcessExitError extends Error { |
| 24 | constructor(readonly code?: string | number | null | undefined) { |
| 25 | super('PROCESS_EXIT_MOCKED'); |
| 26 | this.name = 'MockProcessExitError'; |
nothing calls this directly
no outgoing calls
no test coverage detected