Spiroux Emeric
Results
4
comments of
Spiroux Emeric
I know this is not really a solution for your problem but I solved it on nestJS When preparing your test you can do : ```ts moduleFixture = await Test.createTestingModule({...
Salutations ! I think you doesn't use `renderHook` well. You need to do this : ```ts const { rerender } = renderHook((nextProps) => useMyHook(nextProps || initialProps)) rerender(myNextProps) ``` This solution...