| 855 | |
| 856 | test('should wrap unexpected validator errors during elicitInput', async () => { |
| 857 | class ThrowingValidator implements jsonSchemaValidator { |
| 858 | getValidator<T>(_schema: JsonSchemaType): JsonSchemaValidator<T> { |
| 859 | throw new Error('boom - validator exploded'); |
| 860 | } |
| 861 | } |
| 862 | |
| 863 | const server = new Server( |
| 864 | { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…