Spas Poptchev
Results
2
comments of
Spas Poptchev
I can confirm the issue on functional interfaces. ``` interface Supply : suspend (Input) -> Output ``` In tests the stub `whenever(supply(input)).thenReturn(output)` will return `null` instead of the specified output....
I am facing the same issue when using `zodResolver` from react-hook-form: ``` const keywordSchema = z.preprocess( (arg): string[] => { if (typeof arg === "string") { return arg.trim() === ""...